body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #d6c2ff;
}

.aavo-logo {
    position: fixed;
    top: 60px;
    left: 60px;
    width: 10%;
    z-index: 2;
}

@media (max-width: 500px) {
    .aavo-logo {
        top: 10%;
        left: 50%;
        width: 40%;
        transform: translateX(-50%);
    }
}

.container {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-form label {
    font-weight: 600;
}

.support-form input,
.support-form textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Raleway", sans-serif;
}

.support-form textarea {
    resize: none;
}

.recaptcha-container {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.submit-button {
    background-color: #21cf2f;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #148f1e;
}