* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 660px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 37, 69, 0.1);
}

.illustration-section {
    flex: 1;
    /* background: linear-gradient(135deg, #1a1f3a 0%, #2d3a6b 100%); */
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.illustration-text {
    color: #1e2545;
    text-align: center;
    font-size: 18px;
    max-width: 400px;
    line-height: 1.6;
}

    .illustration-text h2 {
        color: #1e2545;
        font-weight: 600;
    }

.login-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #ffffff;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 40px 12px;
    /* box-shadow: 0 8px 25px rgba(30, 37, 69, 0.08); */
    position: relative;
    /* border: 1px solid #f0f0f0; */
}

.product-logo {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e2545;
    font-weight: bold;
    /* box-shadow: 0 5px 15px rgba(30, 37, 69, 0.1);
            border: 1px solid #f0f0f0; */
    overflow: hidden;
    font-size: 24px;
}

.client-logo {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e2545;
    font-weight: bold;
    overflow: hidden;
    font-size: 24px;
}



    .client-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

.login-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

    .login-header h1 {
        color: #1e2545;
        font-size: 26px;
        font-weight: 600;
    }

    .login-header p {
        color: #6c757d;
        font-size: 15px;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #495057;
        font-weight: 500;
        font-size: 14px;
    }

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafbfc;
}

    .form-control:focus {
        border-color: #1e2545;
        box-shadow: 0 0 0 3px rgba(30, 37, 69, 0.1);
        outline: none;
        background: white;
    }

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #495057;
}

    .remember-me input {
        margin-right: 8px;
        accent-color: #1e2545;
    }

.forgot-password {
    color: #1e2545;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

    .forgot-password:hover {
        color: #151a30;
        text-decoration: underline;
    }

.client {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.login-btn {
    width: 100%;
    padding: 14px;
    background: #1e2545;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .login-btn:hover {
        background: #151a30;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(30, 37, 69, 0.3);
    }

.login-footer {
    text-align: center;
    font-size: 16px;
    color: #1e2545;
    ;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.powered-by {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.company-logo {
    width: 122px;
    height: 22px;
    background: #1e2545;
    border-radius: 4px;
    margin-left: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

    .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 3px;
    }

a {
    color: inherit !important;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.illustration {
    animation: float 5s ease-in-out infinite;
}


@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }

    .illustration-section {
        padding: 30px 20px;
    }

    .login-section {
        padding: 30px 20px;
    }

    .client-logo {
        width: 160px;
        height: 160px;
        font-size: 20px;
    }
}

.login-error {
    background-color: #ff4d4f;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.validation-summary-errors ul {
    list-style-type:none;
}
.navbar-brand .icon-banner {
    max-height: 45px !important;
}
.bg-dark{
    background-color: #1e2545 !important;
}