body {
    font-family: 'DM Sans', sans-serif;
    font-size: small;
    background-color: #e0f0f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background-color: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h2 {
    font-family: Arial, sans-serif;
    font-size: 26px;
    color: #1d293f;
    margin-bottom: 5px;
    font-weight: bold;
}

.subtitulo {
    font-size: 18px;
    color: #1d293f;
    margin-bottom: 5px;
    font-weight: bold;
}

.descripcion {
    font-size: 12px;
    color: #1d293f;
    margin-bottom: 20px;
}

span {
    font-size: 12pt;
    color: #1d293f;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

input[type="email"] {
    width: 90%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

input[type="password"],
input[type="text"] {
    width: 90%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    font-family: 'DM Sans', sans-serif;
    font-size: small;
}

.campo-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Alinea a la derecha */
    gap: 6px;
    font-size: 14px;
    color: #1d293f;
    margin-top: -5px;
    margin-bottom: 16px;
    padding-right: 5%;
}



input[type="submit"] {
    background-color: #f3c1c1;
    color: #1d293f;
    border: 2px solid #f3c1c1;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    width: 90%;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

input[type="submit"]:hover {
    background-color: #e2b2b2;
    color: #fff;
}


/* Estilo para el botón de volver */
.volver {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1d293f;
    margin-bottom: 15px;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    width: fit-content;
}

.volver i {
    margin-right: 5px;
}

.volver:hover {
    background-color: #f3c1c1;
    color: #fff;
}