.contact-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0d7c6;
}

.contact-wrapper h1 {
    text-align: center;
    margin-top: 0;
    color: #4a3525;
    font-family: 'Georgia', serif;
}

.user-badge-info {
    background-color: #f4efe6;
    border-left: 4px solid #8b5a2b;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #4a3525;
}

.contact-wrapper form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.contact-wrapper form input[type="text"],
.contact-wrapper form input[type="email"],
.contact-wrapper form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-wrapper form input[readonly] {
    background-color: #f0f0f0;
    color: #666;
    cursor: not-allowed;
}

.contact-wrapper form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-wrapper button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #8b5a2b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-wrapper button[type="submit"]:hover {
    background-color: #6f451f;
}

.alert-box {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
    color: #666;
}