/********* BODY */

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color:#000;
    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: 300px;
    height: 50px;
    margin: 12px calc(50% - 150px);
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
}

form {
    width: 300px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.input {
    width: 100%;
    height: 28px;
    margin: 0 auto;
    margin-top: 32px;
    display: flex;
    border-bottom: 1px solid #c2c2c2;
}

.icono-input {
    width: 30px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 15px;
    color: #a5a5a5;
}

.textfield {
    width: calc(100% - 50px);
    height: 24px;
    line-height: 24px;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #f0f0f0;
    border-radius: 0;
}

.textfield::placeholder {
    color: #a5a5a5;
}

.mostrarclave {
    width: 20px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #a5a5a5;
    font-size: 14px;
}

.btn1 {
    width: 300px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin: 0 calc(50% - 150px);
    margin-bottom: 20px;
    margin-top: 50px;
    background: #424242;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 5px;
}

/* ********* POPUP */

.popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #000;
    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 #ffffff;
    color: #ffffff;
    font-size: 40px;
    border-radius: 1000px;
}
  
.mensaje-popup {
    width: 95%;
    height: auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin: 0 auto;
    margin-top: 20px;
}
  
.btn-popup {
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: transparent;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    border: 2px solid #ffffff;
    color: #ffffff;
    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: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #b3b3b3;
}

.phantomy {
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 6px;
    font-size: 15px;
    cursor: pointer;
}