/* Contact Form Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.15);
}

button[type="submit"] {
    cursor: pointer;
    border: none;
    width: auto;
    min-width: 150px;
    margin-top: 1rem;
}

/* Make form responsive */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1rem;
    }
    
    input,
    textarea {
        padding: 0.8rem;
    }
}
