.forgot-wrapper {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.forgot-form-wrapper {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #2a2a2a;
}

.forgot-header {
    text-align: center;
    margin-bottom: 35px;
}

.forgot-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.forgot-subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.form-group label span {
    color: #dc2626;
}

.form-input {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #fff;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: #555;
}

.form-input:focus {
    outline: none;
    border-color: #c9a227;
}

.form-input.error {
    border-color: #dc2626;
}

.forgot-btn {
    width: 100%;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.forgot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.forgot-btn:active {
    transform: translateY(0);
}

.forgot-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.forgot-btn.loading {
    position: relative;
    color: transparent;
}

.forgot-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error messages */
.form-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
}

.forgot-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #dc2626;
    text-align: center;
}

/* Success state */
.forgot-success {
    text-align: center;
    padding: 20px 0;
}

.forgot-success-icon {
    margin-bottom: 20px;
}

.forgot-success h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.forgot-success p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.forgot-success strong {
    color: #c9a227;
}

.forgot-success-note {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

/* Links */
.forgot-links {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #2a2a2a;
}

.forgot-links p {
    font-size: 14px;
}

.forgot-links a {
    color: #c9a227;
    text-decoration: none;
}

.forgot-links a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
    .forgot-wrapper {
        padding: 30px 0 60px;
    }

    .forgot-form-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .forgot-icon {
        width: 70px;
        height: 70px;
    }

    .forgot-icon svg {
        width: 32px;
        height: 32px;
    }
}