body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0b0c10, #1f2833); /* Adjust colors as needed */
    color: #66fcf1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #66fcf1;
}

.hero {
    text-align: center;
    padding: 100px 0;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 5px; 
    height: 30px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #0b0c10;
    color: #66fcf1;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ama-form {
    background-color: #1f2833;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(102, 252, 241, 0.5);
    max-width: 400px; /* Limit the width of the form for readability */
    width: 100%; /* Make sure the form takes up the available width */
}

label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #45a29e;
    color: #0b0c10;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #66fcf1;
}

/* Styles for the banner */
.banner {
    background-color: #0b0c10;
    color: #66fcf1;
    text-align: center;
    padding: 40px 0;
}

.banner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.banner h2 {
    font-size: 32px;
    margin: 0;
}

.banner p {
    font-size: 18px;
    margin: 10px 0;
}

/* Rest of your CSS rules */

.ama-form {
    /* ... */
}

label {
    /* ... */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px; /* Adjust this value to control the space */
    border: none;
    border-radius: 5px;
    background-color: #0b0c10;
    color: #FFFFFF;
}

textarea {
    /* ... */
}

button {
    /* ... */
}

