/* css/style.css */
.stylish-feedback-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stylish-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-header {
    text-align: center;
    margin-bottom: 2rem;
}

.feedback-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feedback-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    position: relative;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input[type="email"]:focus,
textarea:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.button-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

.message-status {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.message-status.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.message-status.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-error {
    animation: shake 0.5s ease-in-out;
    border-color: #dc3545 !important;
}