
.container {
    max-width: 800px; 
    margin: 30px auto; 
    padding: 30px; 
    background-color: #1a1d23; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
    color: #e0e0e0; 
}

h1 {
    text-align: center;
    color: #61dafb; 
    margin-bottom: 25px; 
    font-size: 2.2em; 
    letter-spacing: 1px; 
}

#supportForm {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.1em; 
    margin-bottom: 8px;
    color: #9cd8ff; 
    font-weight: 500; 
}

input[type="email"],
input[type="text"],
textarea {
    padding: 12px 15px; 
    border: 1px solid #2a2d35; 
    border-radius: 8px; 
    background-color: #22252b; 
    color: #d0d0d0; 
    font-size: 1em;
    transition: border-color 0.2s ease-in-out; 
}

    input[type="email"]:focus,
    input[type="text"]:focus,
    textarea:focus {
        outline: none;
        border-color: #61dafb; 
    }

textarea {
    resize: vertical; 
    min-height: 150px; 
}

button {
    padding: 12px 25px; 
    background-color: #61dafb; 
    color: #1a1d23; 
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600; 
    transition: background-color 0.3s ease;
    align-self: center; 
    margin-top: 20px;
}

    button:hover {
        background-color: #50a8d2;
    }

@media screen and (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

        .container h1 {
            font-size: 1.8rem;
        }
}
