
.recovery-success-container {
    max-width: 100%;
    margin: 0;
    padding: 12px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f5f7fa;
    min-height: 100vh;
    box-sizing: border-box;
}

.recovery-success-alert {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.success-icon {
    color: #155724;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.success-message {
    text-align: center;
    width: 100%;
}

.success-message h3 {
    color: #155724;
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.success-message p {
    color: #0c4128;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.mobile-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-login-button {
    width: 100% !important;
    max-width: 200px;
    border-radius: 20px !important;
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
    min-width: unset !important;
}

.info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.info-header {
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.info-header h4 {
    margin: 0 0 6px 0;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-subtitle {
    color: #6c757d;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.info-content {
    padding: 16px;
}

.method-title {
    color: #495057;
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center; /* Changed from flex-start to center */
    gap: 10px;
    padding: 4px 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    /* margin-top: 2px; - Removed this line */
}

.step-text {
    color: #343a40;
    font-size: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.step-text strong {
    color: #0056b3;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: #e9ecef;
    margin: 20px 0;
}

.note-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin-bottom: 16px;
}

.note-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.note-text {
    color: #856404;
    font-size: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.note-text strong {
    font-weight: 600;
}

/* Samsung S20 and similar devices (360-400px width) */
@media (min-width: 361px) and (max-width: 400px) {
    .recovery-success-container {
        padding: 10px;
    }

    .success-message h3 {
        font-size: 1rem;
    }

    .success-message p {
        font-size: 0.8rem;
    }

    .mobile-login-button {
        max-width: 180px !important;
    }
}

/* Extra small devices (less than 360px) */
@media (max-width: 360px) {
    .recovery-success-container {
        padding: 8px;
    }

    .recovery-success-alert {
        padding: 12px;
    }

    .success-message h3 {
        font-size: 0.95rem;
    }

    .success-message p {
        font-size: 0.75rem;
    }

    .info-header h4 {
        font-size: 0.9rem;
    }

    .info-subtitle {
        font-size: 0.75rem;
    }

    .step-text {
        font-size: 0.75rem;
    }

    .note-text {
        font-size: 0.75rem;
    }

    .mobile-login-button {
        max-width: 160px !important;
        font-size: 0.8rem !important;
    }
}

