.confirmation-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.confirmation-message {
    text-align: center;
}

.confirmation-message h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.confirmation-message h2 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-message h3 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.email-instructions {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    text-align: left;
}

.email-instructions ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.email-instructions li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.help-section {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    text-align: left;
}

.help-section p {
    margin-bottom: 1rem;
    color: #856404;
    font-weight: bold;
}

.help-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.help-section li {
    margin-bottom: 0.5rem;
    color: #856404;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
    text-decoration: none;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.success-message h2 {
    color: #155724;
    margin-bottom: 1rem;
}

.success-message p {
    color: #155724;
    margin-bottom: 1rem;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.error-message p {
    color: #721c24;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .confirmation-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
} 