.contact-container {
    max-width: 700px;
    margin: 150px auto;
    padding: 40px;
    background: #663399; /* violet opaque */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #E285FF;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #C100FF;
}
.file-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-wrapper input[type="file"] {
    display: none;
}

.file-label {
    background: #E285FF;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: 0.3s;
}

.file-label:hover {
    background: #C100FF;
}

#file-name {
    color: white;
    font-size: 14px;
    opacity: 0.9;
}
