* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-Regular.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-Bold.otf);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SocoadaBody';
    src: url(/static/premia/TIPOGRAFIA/avenir-next/folder/AvenirNextLTPro-It.otf);
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'SocoadaTitle';
    src: url(/static/premia/TIPOGRAFIA/good-times/goodtimesrg.ttf);
}

body {
    font-family: 'SocoadaBody', sans-serif;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    height: 100vh;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
}

.cajaEscudo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    width: 80%;
    margin-top: 100px;
}

.escudoSoco {
    width: 95px;
}

.cajaTextos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-top: 70px; */
    text-align: center;
}

.cajaTextos p {
    width: 75%;
    font-size: 1.2em;
    font-weight: bold;
    color: #9F9F9F;
    margin-top: 20px;
    margin-bottom: 15px;
}

#error {
    color: red;
}

.cajaInfoUser {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

input {
    appearance: none;          /* Elimina el estilo por defecto */
    -webkit-appearance: none;  /* Para Safari/Chrome */
    -moz-appearance: none;     /* Para Firefox */

    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #184387;
    padding: 15px;
    outline: none;
    width: 90%;
    background-color: #EDEDED;

    font-family: 'SocoadaBody', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

input::placeholder {
    font-family: 'SocoadaBody', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

/* Para WebKit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Para Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.labelFechaNac {
    font-family: 'SocoadaBody', sans-serif;
    font-weight: bold;
    color: #184387;
    width: 90%;
    text-align: start;
}

select {
    appearance: none;          /* Elimina el estilo por defecto */
    -webkit-appearance: none;  /* Para Safari/Chrome */
    -moz-appearance: none;     /* Para Firefox */

    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #184387;
    padding: 15px;
    outline: none;
    width: 90%;
    max-width: 600px;
    background-color: #EDEDED;

    font-family: 'SocoadaBody', sans-serif;
    font-size: 20px;
    font-weight: 500;

    position: relative; /* Necesario para posicionar la flecha */

    background-image: url('/static/img/icons/chevron-down-solid.svg');
    background-position: right 15px center; /* Posiciona la flecha */
    background-repeat: no-repeat;
    background-size: 12px; /* Tamaño de la flecha */
}

option {
    font-family: 'SocoadaBody', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.cajaDireccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 30px 0;
    padding: 30px 0px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.inputDireccion {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.btnBuscar {
    text-decoration: none;
    margin-left: 5px;
    margin-bottom: 5px;
    padding: 10px 8px;
    border-radius: 8px;
    border: none;
    background-color: #184387;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1em;
    font-weight: bold;

    cursor: pointer;
}

.msjCP {
    display: flex;
    flex-direction: column;
}

.infoDireccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.infoDireccion input {
    width: 100%;
}

.infoDireccion select {
    width: 100%;
}

.cajaPassword {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.inputPassword {
    position: relative; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password {
    position: absolute;
    top: 40%;
    bottom: 50%;
    right: 7%;
    transform: translateY(-50%);
    cursor: pointer;
}

.alert {
    font-size: 1.8em;
    color: #9F9F9F;
    margin-top: 20px;
    text-align: center;
}

.instrucciones {
    font-size: 1em;
    color: #9F9F9F;
    margin-top: 5px;
    /* margin-bottom: 10px; */
    width: 80%;
    text-align: justify;
    font-weight: bold;
}

.btnSiguiente {
    width: 75%;
    padding: 20px 20px;
    border: none;
    border-radius: 10px;
    background-color: #184387;
    color: white;
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 70px;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnSiguiente:hover {
    background-color: #0F2C5C;
    transform: scale(1.05);
}

.btnAtras {
    width: 60%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.2);
    color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(24, 67, 135, 0.3);
    font-family: 'SocoadaBody', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 30px;

    box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.btnAtras:hover {
    background-color: rgba(30, 30, 30, 0.3);
    transform: scale(1.05);
}

@media screen and (min-width: 730px){
    p {
        width: 600px;
    }

    input {
        max-width: 600px;
    }

    .inputPassword {
        max-width: 700px;
    }

    .btnSiguiente {
        width: 520px;
    }

    .btnGuardar {
        width: 520px;
    }

    .btnAtras {
        width: 420px;
    }

    .instrucciones {
        width: 60%;
        font-size: 1.2em;
    }

    .toggle-password {
        right: 9%;
    }

    .labelFechaNac {
        max-width: 600px;
    }
}