/* Estilo para los inputs con una línea inferior */
.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    width: 100%;
    padding: 8px 0;
    background: transparent;
}

.custom-input:focus {
    border-bottom: 1px solid #000;
}

.custom-label {
    font-weight: bold;
    color: gray;
    margin-bottom: 5px;
    display: block;
}

.custom-error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Estilo para el botón centrado y de color verde */
.button-container {
    text-align: center;
    margin-top: 20px;
}

.custom-button {
    background-color: rgb(235, 100, 10);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-button:hover {
    background-color: darkgreen;
}
