/**
 * ============================================================================
 * forgot-password.css - Forgot Password Page Styles
 * ============================================================================
 *
 * File Location: /www/wwwroot/payorget.com/app/Modules/Core/Auth/Assets/css/forgot-password.css
 *
 * Purpose: Styles for password reset request page with language support
 * Updated: Fixed input padding to 15px (removed icon from input)
 *
 * ============================================================================
 */

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    width: 440px;
    margin: 0 auto;
    position: relative;
}

.back-link-container {
    text-align: center;
    margin-bottom: 20px;
}

.back-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: #333333;
}

/* BANNERS ABOVE CARD */
.success-banner {
    position: absolute;
    top: 44px;
    left: 0;
    width: 440px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 12px 15px;
    color: #155724;
    font-size: 13px;
    line-height: 1.5;
    box-sizing: border-box;
    z-index: 10;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.info-banner {
    position: absolute;
    top: 44px;
    left: 0;
    width: 440px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 6px;
    padding: 12px 15px;
    color: #0c5460;
    font-size: 13px;
    line-height: 1.5;
    box-sizing: border-box;
    z-index: 10;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.error-banner {
    position: absolute;
    top: 44px;
    left: 0;
    width: 440px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 12px 15px;
    color: #721c24;
    font-size: 13px;
    line-height: 1.5;
    box-sizing: border-box;
    z-index: 10;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.error-banner strong {
    display: block;
    margin-bottom: 8px;
}

.error-banner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.error-banner li {
    margin: 3px 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    width: 440px;
    background: #ffffff;
    border-radius: 6px;
    padding: 45px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.header-with-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.auth-header h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.auth-header p {
    font-size: 15px;
    color: #666666;
    margin-top: 10px;
}

.lang-switcher {
    display: flex;
    gap: 3px;
}

.lang-btn {
    padding: 3px 6px;
    font-size: 10px;
    font-weight: 500;
    color: #666666;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: #e8e8e8;
}

.lang-btn.active {
    color: #ffffff;
    background: #0066cc;
    border-color: #0066cc;
}

/* RESET ICON */
.reset-icon-container {
    text-align: center;
    margin: 25px 0;
}

.reset-icon {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.reset-icon svg {
    color: #ffffff;
}

/* INSTRUCTIONS */
.instructions {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333333;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.step-text {
    line-height: 24px;
    flex: 1;
}

/* FORM */
.form-group {
    margin-bottom: 22px;
}

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

.input-group {
    position: relative;
}

.input-icon {
    display: none;
}

.form-control {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    font-size: 15px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.2s;
}

.form-control.with-icon {
    padding-left: 15px;
}

.form-control:focus {
    border: 2px solid #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.btn-primary {
    width: 100%;
    height: 46px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

.btn-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.link-secondary:hover {
    color: #0066cc;
    text-decoration: underline;
}

.link-secondary svg {
    width: 16px;
    height: 16px;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
}