/* LoginHandler CSS - Portable Authentication Styling */

body {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: #333;
    font-weight: 300;
    margin-bottom: 10px;
}

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.nav-tabs > li > a {
    border: none;
    color: #666;
    font-weight: 500;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background: none;
    border: none;
    border-bottom: 2px solid #667eea;
    color: #667eea;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 45px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-primary {
    width: 100%;
    height: 45px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 15px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.alert {
    border-radius: 5px;
    margin-bottom: 20px;
}

.admin-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.temp-password-display {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: monospace;
    text-align: center;
    font-size: 16px;
}

/* Forced Password Change Styles */
.change-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 600px;
}

.change-container h2 {
    text-align: center;
    color: #d63384;
    margin-bottom: 20px;
}

.change-container .form-control {
    height: 45px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
}

.change-container .btn-primary {
    width: 100%;
    height: 45px;
    /* background: linear-gradient(135deg, #d63384 0%, #dc3545 100%); */
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 5px;
}

.change-container .btn-primary:hover {
    background: linear-gradient(135deg, #c42a6a 0%, #c82333 100%);
    color: white;
}