 /* body {
            font-family: 'Poppins', sans-serif;
            background-color: #f4f7fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .login-container {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }
        .form-label {
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
        }
        .form-control {
            border-radius: 5px;
        }
        .btn-primary {
            background-color: #001A67;
            border: none;
            width: 100%;
            padding: 10px;
            font-family: 'Roboto', sans-serif;
        }
        .btn-primary:hover {
            background-color: #003087;
        }
        .alert {
            margin-top: 1rem;
            font-size: 14px;
        }
        .text-link {
            color: #001A67;
            text-decoration: none;
            font-weight: 500;
        }
        .text-link:hover {
            text-decoration: underline;
        } */
         body {
    font-family: 'Poppins', sans-serif;
    background-color:white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px;
}

.left-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-illustration {
    max-width: 100%;
    height: auto;
}

.login-container {
    flex: 1;
    background-color: rgba(238, 242, 254, 1);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.logo {
    display: block;
    margin: 0 auto 1rem;
    width: 65px;
    height: 65px;
}

.form-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #333;
}

.form-control {
    border: 1px solid #b3c9ff;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #001A67;
    border: none;
    width: 100%;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #003087;
}

.alert {
    margin-top: 1rem;
    font-size: 14px;
}

.text-link {
    color: #001A67;
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        margin: 10px;
    }
    .left-image {
        margin-bottom: 20px;
    }
    .login-container {
        margin-left: 0;
    }
}