@charset "utf-8";
/* Contenedor del formulario */
form {
    padding: 25px 30px;
    border-radius: 8px;
	width: 60%;
}

/* Etiquetas */
label {
    font-size: 11px;
    color: #333;
    margin-bottom: 5px;
    display: contents;
	font-family: verdana;
	font-weight: normal;
}

/* Inputs y textarea */
input,
textarea {
    padding: 8px 10px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
input,
checkbox {

    padding: 8px 10px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mensajeenvio {
    padding: 8px 10px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
	font-size: 13px;
    background: #eaeaea7a;
    margin-top: 20px;
    font-family: verdana;
}

/* Efecto al enfocar */
input:focus,
textarea:focus {
    border-color: #2e7d32; /* verde */
    box-shadow: 0 0 5px rgba(46, 125, 50, 0.2);
    outline: none;
}

/* Botón */
button {
    width: 100%;
    padding: 10px;
    background-color: #c62828; /* rojo */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover botón */
button:hover {
    background-color: #a61f1f;
}



