/**
 * LeagueTech Forgot Password Page Styles
 * Inherits shared components from shared.css
 */

/* ===== MESSAGE STYLING ===== */
.message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.message.success {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #bbf7d0;
}

.message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.message svg {
    flex-shrink: 0;
}

/* ===== FORGOT PASSWORD CONTAINER ===== */
.forgot-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    position: relative;
}

.forgot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a 0%, #666 100%);
    border-radius: 24px 24px 0 0;
}

/* ===== FORGOT PASSWORD HEADER ===== */
.forgot-header {
    text-align: center;
    margin-bottom: 40px;
}

.forgot-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.forgot-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

/* ===== BUTTON ENHANCEMENTS ===== */
.forgot-container .btn {
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.forgot-container .btn svg {
    flex-shrink: 0;
}

/* ===== LINKS SECTION ===== */
.links {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #333;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .forgot-container {
        margin: 20px;
        padding: 32px 24px;
        max-width: none;
    }
    
    .forgot-title {
        font-size: 28px;
    }
}