/* Contact Form Success Message Styles */
.success-message {
    background-color: rgba(0, 200, 83, 0.1);
    border: 1px solid #00c853;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message i {
    color: #00c853;
    font-size: 48px;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.email-link {
    display: inline-block;
    background-color: #0077cc;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 10px 10px 0;
    transition: background-color 0.3s ease;
}

.email-link:hover {
    background-color: #005fa3;
}

.reset-form {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 12px 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin: 10px 0 10px 10px;
    transition: background-color 0.3s ease;
}

.reset-form:hover {
    background-color: #e0e0e0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .success-message {
        padding: 20px;
    }
    
    .email-link, .reset-form {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}