body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef4ff 0%, #f8f9fa 100%);
}

.login-wrapper {
    min-height: 100vh;
}

.login-card {
    max-width: 430px;
    width: 100%;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.login-header {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white;
    padding: 28px 24px;
    text-align: center;
}

.login-header .icon-box {
    width: 68px;
    height: 68px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.card-body-custom {
    padding: 28px 24px 24px;
    background: #fff;
}

.form-label {
    font-weight: 600;
    color: #374151;
}

.form-control {
    border-radius: 12px;
    min-height: 46px;
}

.btn-login {
    border-radius: 12px;
    min-height: 46px;
    font-weight: 600;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.input-icon-wrap .form-control {
    padding-left: 40px;
}

.toggle-password-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    z-index: 3;
}

.login-links a {
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}

.small-note {
    font-size: 0.88rem;
    color: #6c757d;
}