.form-container {
    background: white;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, textarea, select {
    width: 50%;
    text-align: center;
    background-color: transparent;
    border: 2px solid #ccc;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    resize: vertical;
}

option {
    width: 25%;
    text-align: center;
    background-color: #3e3c3f;
    border: 2px solid #ccc;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    resize: vertical;
}

button {
    background-color: #747474;
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    width: 50%;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: rgb(151, 36, 36);
}
.grid-container {
    display: grid;
    grid-template-columns: 0px repeat(5, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "navbar main main main main main"
        "navbar main main main main main"
        "navbar main main main main main"
        "navbar main main main main main"
        "footer footer footer footer footer footer";
    min-height: 100vh;
}

/* Main content */
.content {
    grid-area: main;
    display: flex;
    flex-direction: column;
}

.success{
    color: greenyellow;
}

.error{
    color: rgb(168, 0, 0);
}

/* Footer */
footer {
    grid-area: footer;
    color: white;
    text-align: center;
}

footer img {
    vertical-align: middle;
}