/********* COLORES */

/* ORO 1 = #D19245
/* ORO 2 = #DCB350
/* ORO 3 = #F1E69C

/* AZUL 1 = #141654
/* AZUL 2 = #2B398B
/* AZUL 3 = #0080BC

/* NARANJA 1 = #E95A24

/********* BODY */

html {
    background-color:#2B398B;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color:#2B398B;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar:vertical {
    display: block;
    width: 8px;
}
  
body::-webkit-scrollbar-track:vertical {
    background: #929292;
}

body::-webkit-scrollbar-thumb:vertical {
    background: #474747;
}

/********* CONTENIDO */

.contenido {
    width: 100%;
    max-width: 1800px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
}

.logo-contenido {
    width: 320px;
    height: 120px;
    background-image: url('../img/logo_titulo_blanco.png');
    background-size: cover;
    background-position: center;
    margin: 0 calc(50% - 160px);
    cursor: pointer;
}

form {
    width: 320px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.input {
    width: 100%;
    height: 40px;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    background-color: #384ab1;
    border-radius: 5px;
}

.icono-input {
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}

.textfield {
    width: calc(100% - 60px);
    height: 40px;
    line-height: 40px;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    border-radius: 0;
    padding: 0;
}

.textfield::placeholder {
    color: #fff;
}

.mostrarclave {
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.btn1 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    background: #DCB350;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

/* ********* POPUP */

.popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color:#2B398B;
    display: none;
}
  
.icono-popup {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 calc(50% - 30px);
    margin-top: 30vh;
    z-index: 99;
    border: 4px solid #fff;
    color: #fff;
    font-size: 40px;
    border-radius: 1000px;
}
  
.mensaje-popup {
    width: 95%;
    height: auto;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
    margin-top: 20px;
}
  
.btn-popup {
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: transparent;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    border: 2px solid #fff;
    color: #fff;
    margin: 25px calc(50% - 80px);
    cursor: pointer;
    border-radius: 5px;
}

/******** TRADEMARK */

.trademark {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: #cecece;
}

.phantomy {
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 6px;
    font-size: 15px;
    cursor: pointer;
}