.prayer-form input,
.prayer-form textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.prayer-form input:focus,
.prayer-form textarea:focus {
    border-color: #4ECDC4;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

.submit-button {
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-button:disabled {
    background: linear-gradient(90deg, #ccc, #ddd);
}

.prayer-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.success-message {
    background: linear-gradient(135deg, #4ECDC4, #2ECC71);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.error-message {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}
