/* Recovery page specific styles */
.recovery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.recovery-section {
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid;
    background: #1d1d23;
    transition: all 0.3s ease;
}

.recovery-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.paying-customer {
    border-color: #6A0DAD;
    background: linear-gradient(135deg, #1d1d23 0%, rgba(106, 13, 173, 0.1) 100%);
}

.new-account {
    border-color: #9b59b6;
    background: linear-gradient(135deg, #1d1d23 0%, rgba(155, 89, 182, 0.1) 100%);
}

.recovery-section h3 {
    margin-top: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.recovery-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #bbb;
}

.recovery-section ul li {
    margin-bottom: 8px;
    position: relative;
}

.recovery-section ul li::marker {
    color: #6A0DAD;
}

.response-time {
    font-weight: 600;
    color: #6A0DAD;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.response-time::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236A0DAD' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #6A0DAD;
    color: white;
    border-color: #6A0DAD;
}

.btn-primary:hover {
    background: #7d29d2;
    border-color: #7d29d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
}

.help-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(155, 89, 182, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.help-section h4 {
    margin-top: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-section h4::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239b59b6' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.help-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #bbb;
}

.help-section ul li {
    margin-bottom: 8px;
    position: relative;
}

.help-section ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236A0DAD' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.small-text {
    font-size: 0.9rem;
    color: #9b9ba7;
    font-style: italic;
}

.return-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
}

.return-link a {
    color: #9b59b6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.return-link a:hover {
    color: #6A0DAD;
    transform: translateX(-4px);
}

.return-link a::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239b59b6' viewBox='0 0 24 24'%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: all 0.3s ease;
}

.return-link a:hover::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236A0DAD' viewBox='0 0 24 24'%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E") no-repeat center;
}

/* Add icons to section headers */
.paying-customer h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236A0DAD' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.new-account h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239b59b6' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .recovery-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .recovery-section {
        padding: 1rem;
    }

    .help-section {
        padding: 1rem;
    }
}

/* Animation for the recovery sections */
.recovery-section {
    animation: fadeInSlideUp 0.6s ease-out;
}

.recovery-section:nth-child(1) {
    animation-delay: 0.1s;
}

.recovery-section:nth-child(2) {
    animation-delay: 0.2s;
}

.help-section {
    animation: fadeInSlideUp 0.6s ease-out;
    animation-delay: 0.3s;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.security-reminder {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(106, 13, 173, 0.1);
    border-left: 3px solid #6A0DAD;
    border-radius: 5px;
    font-size: 14px;
}

.security-reminder strong {
    color: #6A0DAD;
}