.form-container {
    margin: 20px 25%;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 50%;
    align-items: center;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.banner {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}
.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

label {
    font-weight: bold;
    display: block;
    /*margin-top: 15px;*/
    color: #444;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

.button-group {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

button .forma {
    /* width: 48%; */
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

button[type="reset"] {
    background: #ccc;
    color: #000;
}

button[type="submit"] {
    background: #007bff;
    color: #fff;
}

button:hover {
    opacity: 0.9;
}
@media screen and (max-width: 900px){
    .form-container {
        width: 90%;
        margin: 15px 5%;
        padding: 30px 40px;
    }
}
