/* Forgot Password Page Styles */
/* Footer and navigation styles are NOT included here */

body {
    font-family: 'Raleway', sans-serif;
    background-color: #F8F8F8;
}

/* Forgot Password Container */
.forgot-password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Forgot Password Card */
.forgot-password-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Page Title */
.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Page Subtitle */
.page-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Form Styling */
.forgot-password-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #E8175D;
    box-shadow: 0 0 0 3px rgba(232, 23, 93, 0.1);
}

.form-control::placeholder {
    color: #999999;
}

/* Back to Login Link */
.back-to-login {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #4A90E2;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.back-to-login:hover {
    color: #2E5C99;
    text-decoration: underline;
}

/* Send Pin Button */
.btn-send-pin {
    width: 100%;
    max-width: 300px;
    background: #f3687f;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 4px 8px rgba(232, 23, 93, 0.25);
}

.btn-send-pin:hover {
    background: #D01550;
    box-shadow: 0 6px 12px rgba(232, 23, 93, 0.35);
    transform: translateY(-2px);
}

.btn-send-pin:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(232, 23, 93, 0.25);
}

/* Signup Text */
.signup-text {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0;
}

.signup-link {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #2E5C99;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forgot-password-container {
        padding: 40px 15px;
    }
    
    .forgot-password-card {
        padding: 40px 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .btn-send-pin {
        font-size: 17px;
        padding: 14px 35px;
    }
}

@media (max-width: 576px) {
    .forgot-password-container {
        padding: 30px 12px;
        min-height: auto;
    }
    
    .forgot-password-card {
        padding: 35px 24px;
        border-radius: 10px;
    }
    
    .page-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .page-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .back-to-login {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-send-pin {
        font-size: 16px;
        padding: 13px 30px;
        max-width: 100%;
    }
    
    .signup-text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .forgot-password-card {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 13px;
    }
}
