 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    @font-face {
        font-family: 'Segoe UI This';
        src: url('/new-assets/fonts/SegoeUIThis.eot');
        src: url('/new-assets/fonts/SegoeUIThis.eot?#iefix') format('embedded-opentype'),
            url('/new-assets/fonts/SegoeUIThis.woff2') format('woff2'),
            url('/new-assets/fonts/SegoeUIThis.woff') format('woff'),
            url('/new-assets/fonts/SegoeUIThis.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Segoe UI This';
        src: url('/new-assets/fonts/SegoeUIThis-Bold.eot');
        src: url('/new-assets/fonts/SegoeUIThis-Bold.eot?#iefix') format('embedded-opentype'),
            url('/new-assets/fonts/SegoeUIThis-Bold.woff2') format('woff2'),
            url('/new-assets/fonts/SegoeUIThis-Bold.woff') format('woff'),
            url('/new-assets/fonts/SegoeUIThis-Bold.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
        font-display: swap;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: #fff;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        position: relative;
        overflow: hidden;
    }

    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
        animation: float 30s infinite linear;
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    .login-container {
        background: #fff;
        border-radius: 0;
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        position: relative;
        z-index: 1;
        border: 0;
        height: 660px;
    }

    .login-visual {
        background: #FED5C3;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 8px;
    }

    .login-visual::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
        background-size: 60px 60px;
        animation: movePattern 20s linear infinite;
    }

    @keyframes movePattern {
        0% { transform: translate(0, 0); }
        100% { transform: translate(60px, 60px); }
    }

    .visual-content {
        text-align: center;
        color: white;
        z-index: 1;
        position: relative;
        max-width: 475px;
    }
     p.visual-subtitle {
        font-size: 1.1rem;
        opacity: 0.85;
        line-height: 1.5;
        font-weight: 500;
    }
    .visual-content p.visual-subtitle {
        font-size: 22px;
        opacity: 1;
        line-height: 1.5;
        font-weight: 600;
        margin-bottom: 12px;
        color: #252B37;
        font-family: 'Segoe UI';
    }
    .visual-content p {
        font-weight: 400;
        letter-spacing: 0.4px;
    }
    visual-icon {
        width: 80px;
        height: 80px;
        /* background: rgba(255, 255, 255, 0.2); */
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        /* backdrop-filter: blur(10px); */
    }

    .visual-icon i {
        font-size: 2.5rem;
        opacity: 0.9;
    }

    .visual-title {
        font-size: 26px;
        margin-bottom: 16px;
        font-weight: 700;
        line-height: 1.2;
    }

    .visual-subtitle {
        font-size: 1.1rem;
        opacity: 0.85;
        line-height: 1.5;
        font-weight: 300;
    }

    .login-form-section {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .form-title {
        font-size: 2rem;
        color: #1a202c;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .form-subtitle {
        color: #718096;
        font-size: 1rem;
        font-weight: 400;
    }

    .alert {
        padding: 16px 20px;
        border-radius: 12px;
        margin-bottom: 24px;
        font-size: 0.9rem;
        font-weight: 500;
/*            display: none;*/
        align-items: center;
        gap: 12px;
    }

    .alert-error {
        background: linear-gradient(135deg, #fed7d7, #feb2b2);
        color: #c53030;
        border: 1px solid #fc8181;
    }

    .alert-success {
        background: linear-gradient(135deg, #2f855a29, #2f855a29);
        color: #2f855a;
        border: 1px solid #2f855a29;
    }

    .form-group {
        margin-bottom: 24px;
    }

   .form-label {
        display: block;
        margin-bottom: 8px;
        color: #2d3748;
        font-weight: 600;
        font-size: 18px;
        display: flex;
        align-items: center;
        font-family: "Raleway",  sans-serif;
    }
    .form-label svg {
        margin-right: 5px;
    }

    .input-wrapper {
        position: relative;
    }

    .form-input {
        width: 100%;
        padding: 17px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fff;
        font-weight: 500;
        color: #717680;
    }

    .form-input:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

    .input-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #a0aec0;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .input-icon:hover {
        color: #667eea;
    }

    .form-options {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 24px 0;
    }

    .checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .checkbox {
        width: 18px;
        height: 18px;
        accent-color: #667eea;
        cursor: pointer;
    }

    .checkbox-label {
        font-size: 0.9rem;
        color: #4a5568;
        cursor: pointer;
        font-weight: 500;
    }

    .forgot-link {
        color: #667eea;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .forgot-link:hover {
        color: #764ba2;
    }

    /*.login-button {
        width: 100%;
        background: linear-gradient(135deg, #ff671f 0%, #ff671f 100%);
        color: white;
        border: none;
        padding: 18px 24px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }*/
    .login-button {
        width: 100%;
        background: #FF671E;
        color: white;
        border: none;
        padding: 18px 24px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-transform: none;
        letter-spacing: 0;
        font-family: "Raleway",  sans-serif;
    }

    .login-button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
    }

    .login-button:active {
        transform: translateY(0);
    }

    .login-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }

    .button-spinner {
        display: none;
        width: 20px;
        height: 20px;
        border: 2px solid transparent;
        border-top: 2px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 8px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .form-footer {
        text-align: center;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid #e2e8f0;
    }

    .register-link {
        color: #4a5568;
        font-size: 0.9rem;
    }

    .register-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .register-link a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .login-container {
            grid-template-columns: 1fr;
            max-width: 420px;
            margin: 10px;
        }

        .login-visual {
            display: none;
        }

        .login-form-section {
            padding: 40px 30px;
        }

        .form-title {
            font-size: 1.6rem;
        }

        .form-options {
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }
    }

    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    .visual-content p {
        font-weight: 400;
        letter-spacing: 0.4px;
    }

    .login-visual {
        position: relative;
    }


      /* .login-visual:before {
    position: absolute;
    left: auto;
    right: 120px;
    width: 70px;
    height: 70px;
    content: "";
    top: 30px;
    border-radius: 100%;
    background: linear-gradient(-66deg, rgba(62, 73, 91, 1) -3%, #de6f6c 100%);
}
.login-visual:after {
    position: absolute;
    left: auto;
    right: 20px;
    width: 120px;
    height: 120px;
    content: "";
    top: 100px;
    border-radius: 100%;
    background: linear-gradient(-66deg, rgba(62, 73, 91, 1) -3%, #de6f6c 100%);
}*/
.login-visual:after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    background-image: url(/new-assets/img/Vector-background.png);
    width: 488px;
    height: 315px;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-visual {
    background: #FED5C3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.visual-title {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #181D27;
    font-family: "Raleway", sans-serif !important;
    margin-top: 12px;
}
.visual-content p.visual-subtitle {
    font-size: 22px;
    opacity: 1;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 12px;
    color: #252B37;
    font-family: "Raleway", sans-serif !important;
}
.visual-content p {
    font-weight: 600;
    letter-spacing: 0;
    font-size: 18px;
    color: #414651;
    line-height: 30px;
    font-family: "Raleway", sans-serif;
}
.form-title {
    font-size: 22px;
    color: #181D27;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
    font-family: "Raleway", sans-serif;
}
.checkbox-label {
    font-size: 16px;
    color: #252B37;
    cursor: pointer;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
.forgot-link {
    color: #0086C9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: "Roboto", sans-serif;
}

.form-footer {
    text-align: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 0;
}
.register-link {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
.register-link a {
    color: #FF671E;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.visual-icon img {
    width: 100% !important;
    max-width: 75px;
    height: 75px;
    object-fit: cover;
}
.visual-icon {
    margin-top: 70px;
}
.form-options a {
    font-weight: 600;
    text-decoration: none;
    color: #0086C9;
}
.forgot-paragraph {
    margin: 35px 0 0;
}
p.visual-subtitle {
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.5;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.form-options .checkbox-label {
    font-family: "Roboto", sans-serif;
}

/****************media query**********************/
@media (max-width:1440px) {
    .login-container {
        padding: 0px 25px;
        background: transparent;
    }
    .login-container {
        padding: 0px 25px;
    }
}

@media (max-width:1200px) {
    .login-visual:after {
        width: 458px;
        height: 305px;
    }
    .visual-content p {
        font-size: 16px;
    }
    .visual-content {
        padding: 0 30px;
    }
}

@media (max-width:1024px) {
    .login-form-section {
        padding: 30px 30px;
    }
    .login-visual:after {
        width: 378px;
        height: 250px;
    }
}

@media (max-width:840px) {
    .login-form-section {
        padding: 30px 20px;
    }
    .visual-icon img {
        max-width: 65px;
        height: 65px;
    }
    .login-visual:after {
        width: 318px;
        height: 200px;
    }
    .form-options a {
        font-size: 14px;
    }
    .login-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        overflow: scroll;
    }
    .login-visual, .login-form-section {
        width: 268px;
        height: 170px;
    }
    .login-visual, .login-form-section {
        width: 100%;
        height: 80%;
    }
}

@media (max-width:767px) {
    .visual-content {
        max-width: 95%;
    }
    .visual-icon {
        margin-top: 10px;
    }
    .login-container {
        max-width: 100%;
    }
    .form-header {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .login-container {
        padding: 15px 15px;
        margin: 0;
        height: 700px;
    }
}

@media (max-width:500px) {
    .login-visual:after {
        width: 250px;
        height: 156px;
    }
}

@media (max-width:440px) {
    .visual-content {
        max-width: 100%;
    }
    .visual-content {
        padding: 35px 25px;
    }
    .visual-title, .form-title {
        font-size: 24px;
    }
    .login-visual:after {
        width: 130px;
        height: 80px;
    }
    .login-visual, .login-form-section {
        width: 100%;
/*        height: 100%;*/
        height: auto !important;
    }
    .login-form-section {
        justify-content: flex-start;
    }
    .login-form-section {
        justify-content: flex-start;
        height: 90% !important;
    }
    .login-visual {
        height: auto;
    }
    .forgot-paragraph {
        margin: 15px 0 5px;
    }
    p.visual-subtitle {
        font-size: 16px;
    }
    .login-form-section {
        padding: 30px 5px;
    }
}

@media (max-width:768px) {
    .login-container {
        height: 900px;
        max-width: 95%;
    }
    .login-visual, .login-form-section {
        width: 100%;
        height: auto;
    }
}



