* {
    font-family: 'Inter', sans-serif;
}

body,
html {
    height: 100%;
    margin: 0;
    background-color: #f8fafc;
}

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

.login-image {
    flex: 1;
    background: url('../../Assets/images/bg2.png') no-repeat center center;
    background-size: cover;
}

.login-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

.card {
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    border: 1px solid #e2e8f0;
}

.form-control {
    border-radius: 10px;
    height: 44px;
    font-size: 0.95rem;
}

.btn-login {
    background-color: #052d5eff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: #073b7aff;
    color: white;
}

.footer-text {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .login-image {
        display: none;
    }

    .login-card {
        flex: 1 1 100%;
    }
}