/**
 * Password Reset Pages Styles
 * Forgot Password and Reset Password pages
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ============================================
   Reset Card
   ============================================ */
.reset-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    width: 100%;
    max-width: 500px;
}

.reset-header {
    text-align: center;
    margin-bottom: 35px;
}

.reset-header i {
    font-size: 64px;
    color: #2a5298;
    margin-bottom: 20px;
}

.reset-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.reset-header p {
    font-size: 15px;
    color: #666;
}

/* ============================================
   Form Elements
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.form-control {
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

.password-toggle:hover {
    color: #2a5298;
}

/* ============================================
   Buttons
   ============================================ */
.btn-reset {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

.btn-back {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #2a5298;
    border: 2px solid #2a5298;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-back:hover {
    background: #2a5298;
    color: white;
}

/* ============================================
   reCAPTCHA & Alerts
   ============================================ */
.recaptcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ============================================
   Password Strength Indicator
   ============================================ */
.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.password-strength.weak {
    color: #dc3545;
}

.password-strength.medium {
    color: #ffc107;
}

.password-strength.strong {
    color: #28a745;
}




