.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.form-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.form-container form {
    display: flex;
    flex-direction: column;
    width: 500px;
}

.form-container form input {
    width: 100%;
    padding: 10px;
    border: none solid var(--noname);
    border-bottom: 2px solid var(--btn-conf);
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
    background-color: transparent;
}

.form-container form textarea {
    border: 2px solid var(--btn-conf);
    background: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    resize: none;
    min-height: 100px;
    min-width: 100%;
    max-width: 100%;
    margin: 20px 0 35px 0;
}

.form-container form button {
    background-color: var(--fond);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.form-container form select {
    width: 100%;
    padding: 10px;
    border: none solid var(--noname);
    color: white;
    background: var(--fond);
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}