* {
    margin: 0;
    padding: 0;
}

:root {
    --font-color: rgb(40, 40, 40);
    --fondo-pagina: rgb(241, 252, 252);
    --btn-principal: rgb(228, 246, 254);
    --btn-fondo-principal: rgb(70, 70, 172);
    --btn-secundario: rgb(43, 121, 63);
    --btn-tercero: #281b85;
    --title: rgb(91, 91, 159);
    --subtitle: rgb(87, 87, 199);
    --subsubtitle: rgb(58, 58, 197);
    --alert: rgb(178, 36, 36);

    margin: 0;
    padding: 0;
    background-color: var(--fondo-pagina);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--font-color);
}

body {
    background-color: #5659c9;
    box-sizing: border-box;
}


.capa_login {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 4fr));
    gap: 30px;
    width: 70%;
    margin: 0 15%;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
}
@media (max-width:600px) {
    .capa_login {
        width: 75%;
        margin: 0 10%;
        align-items: center;
        justify-content: center;
        background-color: #fff;
    }
}

.formulario {
    display: grid;
    background: #e9f0ff;
    border-radius: 10px;
    border: 1px solid #9b9bd1;
    padding: 1em;
    box-shadow: 3px 3px 3px white;
    background: radial-gradient(circle at 80%, #5475f9, #5659c9 50%, #3d2bc4 85%, #3a0fc7 100%);
}

#titulo_form {
    margin: 10px;
    font-size: 1.4em;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}
#clase_imagen {
	max-width: 90%;max-height: 70%;
	background-size: cover;
	display: grid;
	margin: 20px auto;
}
@media (max-width: 1000px) {
	#clase_imagen {
		width: 200px;
	}
}
#campo1,
#campo2 {
    margin: 0 0 10px 0;
    font-size: 1.7em;
    letter-spacing: 1.5px;
    padding: 5px;
}

label {
    font-size: 1.3em;
    color: #5475f9;
    margin-top: 12px;
    margin-bottom: 3px;
}

.btn_general {
    padding: 20px 55px !important;
    border-radius: 4px;
    width: fit-content;
    font-size: 16px;
}

.btn_general:hover {
    background-position: 0;
    color: white;
    cursor: pointer;
}

.btn_general,
.btn_accion {
    border: 1px solid var(--btn-principal);
    background: var(--btn-fondo-principal);
    background-image: -webkit-linear-gradient(25deg, var(--btn-tercero) 50%, transparent 50%);
    background-image: linear-gradient(25deg, var(--btn-tercero) 50%, transparent 50%);
    color: white;
    background-position: 100%;
    background-size: 400%;
    -webkit-transition: background 400ms ease-in-out;
    transition: background 400ms ease-in-out;
}

.btn_general:hover,
.btn_accion:hover {
    border: 1px solid var(--btn-principal);
}

.btn_grande {
    padding: 7px 25px !important;
}

.btn_seleccion {
    border: 1px solid rgb(74, 131, 64);
    background: #248745;
    color: rgb(226, 255, 233);
}

.btn_seleccion2 {
    background-color: #4547a7;
    color: rgb(255, 255, 0);
    margin-right: 5px;
}

.btn_seleccion2:hover {
    border: 1px solid rgb(41, 111, 74);
    background: #292353;
    transition: background 600ms ease-out;
}

#caja_botones {
    padding: 20px;
    display: flex;
    justify-content: space-evenly;

}

.btn_seleccion {
    border: 1px solid rgb(74, 131, 64);
    background: #248745;
    color: rgb(226, 255, 233);
}

.btn_seleccion:hover {
    border: 1px solid rgb(45, 15, 104);
    background: #cef0d0;
    transition: background 600ms ease-out;
    color: rgb(12, 86, 29);
}

.btn_danger {
    border: 1px solid rgb(150, 79, 57);
    background: #e21005;
    color: rgb(226, 255, 233);
}

.btn_danger:hover {
    border: 1px solid rgb(111, 63, 41);
    background: #901305;
    transition: background 600ms ease-out;
}