/**
 * Login Page Styles
 * Clean Enterprise Design
 */

body {
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
}

.login-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 30px 30px 25px;
    text-align: center;
    border-bottom: 3px solid #3498db;
}

.login-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #3498db;
}

.login-header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.login-header p {
    font-size: 0.875rem;
    margin: 0;
    color: #bdc3c7;
}

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

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.login-footer small {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.form-control {
    border: 1px solid #dce1e6;
    border-radius: 6px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.input-group .btn-outline-secondary {
    border-color: #dce1e6;
}

.input-group .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.btn-login {
    background: #3498db;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
    width: 100%;
    color: white;
}

.btn-login:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.password-toggle {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7f8c8d;
    z-index: 10;
}

.password-toggle-icon:hover {
    color: #3498db;
}

/* OTP Verification Page */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #dce1e6;
    border-radius: 8px;
    transition: all 0.2s;
}

.otp-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.timer {
    text-align: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.timer.expired {
    color: #e74c3c;
}

.resend-btn {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.resend-btn:hover {
    color: #2980b9;
    text-decoration: underline;
}

.resend-btn.disabled {
    color: #95a5a6;
    cursor: not-allowed;
    pointer-events: none;
}

.login-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 10px 0 5px 0;
    color: #ecf0f1;
}

.login-card {
    max-width: 100%;
}

