/* Forgot Password Page Styles */

.auth-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-title {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.auth-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #40b4e0;
    box-shadow: 0 0 0 3px rgba(64, 180, 224, 0.1);
}

.auth-button {
    width: 100%;
    background: linear-gradient(135deg, #fd192a 0%, #40b4e0 100%);
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-sizing: border-box;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 25, 42, 0.3);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #40b4e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #fd192a;
}

/* Confirmation Box Styles */
.confirmation-box {
    text-align: center;
    padding: 1rem 0;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-box h3 {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-box p {
    margin: 0.75rem 0;
    color: #1f2937;
}

.confirmation-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(253, 25, 42, 0.05) 0%, rgba(64, 180, 224, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid #40b4e0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.password-display {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 8px;
    border: 2px solid #10b981;
}

.password-display strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.password-display code {
    user-select: all;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.5rem;
    color: #1f2937;
}
