.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 170px 20px 80px;
    position: relative;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 440px;
    width: 100%;
}

.login-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.login-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-header p {
    margin: 10px 0 0;
    opacity: 0.95;
    font-size: 14px;
}

.login-body {
    padding: 40px 40px 30px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.1);
}

.input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.password-toggle:hover {
    color: #666;
}

.btn-login {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
    text-transform: uppercase;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, #fdba74 0%, #dc2626 100%);
}

.form-check-input:checked {
    background-color: #f97316;
    border-color: #f97316;
}

.link-primary {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #ea580c;
    text-decoration: underline;
}

.alert {
    border-radius: 10px;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
}

.alert-info {
    background-color: #e8f4f8;
    color: #0c5460;
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e8ed;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 13px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 140px 20px 20px;
        min-height: calc(100vh - 200px);
    }
}

@media (max-width: 576px) {
    .login-body {
        padding: 30px 25px 25px;
    }

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

    .login-header h2 {
        font-size: 28px;
    }
}
