body {
    background: #f4f6f9;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.login-container h2 {
    font-weight: 600;
    font-size: 24px;
    color: #333;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.form-control {
    border-radius: 6px;
    height: 45px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-custom {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    height: 45px;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: white;
}

.forgot-link {
    text-decoration: none;
    font-size: 14px;
    color: #0d6efd;
}

.forgot-link:hover {
    text-decoration: underline;
}

.button-checkbox {
    font-size: 14px;
}
