@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        background-color: var(--color-background) !important;
        font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif !important;
    }
    .welcomeWebSiteContainer {
        width: 100%;
        min-height: 100vh;
        background: var(--color-background);
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        flex-direction: column;
    }
    .welcomeWebSiteContainer > .welcomeFormContainer--Card {
        width: 100%;
        max-width: 440px;
        background: var(--color-surface);
        border-radius: 20px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        padding: 36px 32px;
        margin: 20px;
    }
    .formContentWelcomeNext {
        margin-bottom: 8px;
    }
    .welcomeWebSiteContainer > .welcomeFormContainer--Card > .welcomeFormTitle {
        margin-bottom: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .logo-auth {
        width: 42px;
        height: 42px;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        border-radius: 8px;
        user-select: none;
    }
    .welcomeFormTitle h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        color: var(--color-text-primary);
        margin: 0 0 4px;
    }
    .welcomeFormTitle p {
        font-size: 14px;
        color: var(--color-text-secondary);
        margin: 0;
        line-height: 1.4;
    }
    .formFloatWebsite {
        margin-bottom: 12px;
        position: relative;
        width: 100%;
    }
    .formFloatWebsite input,
    .formFloatWebsite select {
        padding: 14px 16px;
        border: 1.5px solid var(--color-input-border);
        border-radius: 12px;
        width: 100%;
        background-color: var(--color-input-bg);
        outline: none;
        box-shadow: none;
        font-size: 16px;
        font-weight: 400;
        color: var(--color-text-primary);
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        -webkit-appearance: none;
        appearance: none;
    }
    .formFloatWebsite input:focus,
    .formFloatWebsite select:focus {
        border-color: var(--color-input-border-focused);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 15%, transparent);
    }
    .formFloatWebsite input::placeholder,
    .formFloatWebsite select::placeholder {
        color: var(--color-text-tertiary);
        font-size: 15px;
    }
    .csd-field {
        position: relative;
    }
    .csd-wrapper {
        position: relative;
        width: 100%;
    }
    .csd-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border: 1.5px solid var(--color-input-border);
        border-radius: 12px;
        width: 100%;
        background-color: var(--color-input-bg);
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        color: var(--color-text-primary);
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        user-select: none;
    }
    .csd-trigger:hover {
        border-color: var(--color-input-border-focused);
    }
    .csd-open .csd-trigger {
        border-color: var(--color-input-border-focused);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 15%, transparent);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .csd-label {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .csd-label:empty::before {
        content: 'Select College';
        color: var(--color-text-tertiary);
    }
    .csd-arrow {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--color-text-tertiary);
        margin-left: 10px;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }
    .csd-open .csd-arrow {
        transform: rotate(180deg);
    }
    .csd-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border: 1.5px solid var(--color-input-border-focused);
        border-top: none;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 100;
        max-height: 280px;
        overflow: hidden;
        flex-direction: column;
    }
    .csd-open .csd-menu {
        display: flex;
    }
    .csd-search {
        padding: 12px 16px;
        border: none;
        border-bottom: 1px solid var(--color-divider);
        width: 100%;
        font-size: 14px;
        outline: none;
        box-sizing: border-box;
        background: var(--color-input-bg);
        color: var(--color-text-primary);
    }
    .csd-search:focus {
        background: var(--color-surface);
    }
    .csd-options {
        overflow-y: auto;
        max-height: 220px;
        flex: 1;
    }
    .csd-option {
        padding: 12px 16px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.15s ease;
        color: var(--color-text-primary);
    }
    .csd-option:hover {
        background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
    }
    .csd-option.csd-selected {
        background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface));
        font-weight: 600;
        color: var(--color-primary);
    }
    .csd-option.csd-placeholder {
        color: var(--color-text-tertiary);
        font-weight: 400;
    }
    .formFloatWebsite button {
        background-color: var(--color-primary);
        color: var(--color-on-primary);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        border-radius: 999px;
        box-shadow: none;
        outline: none;
        width: 100%;
        padding: 14px;
        border: none;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }
    .formFloatWebsite button:hover {
        opacity: 0.92;
    }
    .formFloatWebsite button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .otherWelcomePageSelect {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 12px;
        gap: 4px;
    }
    .forgetPassWelcome {
        font-size: 14px;
        line-height: 1.4;
        font-weight: 400;
        color: var(--color-text-secondary);
        text-decoration: none;
    }
    .forgetPassWelcome:hover {
        text-decoration: underline;
    }
    .otherLinerContent {
        width: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .line {
        flex: 1;
        height: 0;
        border: 0;
        border-top: 1px solid var(--color-divider);
    }
    .otherLinerContent span:nth-child(2) {
        color: var(--color-text-tertiary);
        font-size: 13px;
        font-weight: 400;
        margin: 0 16px;
        flex-shrink: 0;
    }
    .otherLoginContentCard {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .socialLoginBtnBtn {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--color-text-primary);
        padding: 13px;
        border: 1.5px solid var(--color-border);
        border-radius: 999px;
        box-sizing: border-box;
        margin: 0;
        margin-bottom: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        transition: background 0.2s ease;
        background: transparent;
    }
    .socialLoginBtnBtn svg {
        width: 22px;
        height: 22px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    .socialLoginBtnBtn img {
        width: 22px;
        height: 22px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    .socialLoginBtnBtn i {
        display: none;
    }
    .socialLoginBtnBtn:hover {
        background: color-mix(in srgb, var(--color-text-primary) 6%, transparent);
    }
    .footerWelcomePageWrapper {
        margin-top: 24px;
        font-size: 12px;
        line-height: 1.5;
        font-weight: 400;
        color: var(--color-text-tertiary);
        text-align: center;
    }
    .footerWelcomePageWrapper span {
        margin-right: 6px;
    }
    .footerWelcomePageWrapper a {
        text-decoration: none;
        color: var(--color-text-tertiary);
        margin-right: 6px;
    }
    .footerWelcomePageWrapper a:hover {
        text-decoration: underline;
    }
    .notRegisterForWebsite__Coming {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--color-threads-like);
        padding: 20px;
        border: 1px solid var(--color-divider);
        border-radius: 12px;
        box-sizing: border-box;
        margin: 0;
        margin-bottom: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
    }
    .profile-form-desc {
        font-size: 14px;
        color: var(--color-text-secondary);
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.4;
    }
    .auth-toggle-link {
        color: var(--color-primary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-block;
    }
    .auth-toggle-link:hover {
        text-decoration: underline;
    }
    .auth-toggle-link strong {
        font-weight: 700;
    }
    .vp-mobile-apps {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .vp-mobile-apps a {
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
    }
    .vp-mobile-apps a svg {
        width: 100px;
        height: 35px;
    }
    .vp-mobile-apps a img {
        width: 110px;
        height: 35px;
        object-fit: contain;
    }
    .google-play-store-vp-app {
        width: 120px !important;
        height: auto !important;
    }
}