/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 5 feb. 2025, 13:48:44
    Author     : Hebert Lopez
*/

*{
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}
.cabecera{
    background: #FB5D02; 
    height:80px;
}
.logoIzq{
    float: left;
    height: 70px;
    margin: 10px 0px 10px 20px;
    padding-bottom: 10px;
}

.logoDer{
    float: right;
    height: 70px;
    padding-bottom: 10px;
    margin: 10px 20px 15px 0px;
}

.login-contenedor{
    width: 100%;
    height: 65vh;
    background: #FFF8DF;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form-contenedor{
    width: 100%;
    max-width: 450px;
    background: #000000;
    padding: 20px 60px 70px;
    text-align: center;
    border-radius: 25px;
    height: 100%;
    max-height: 470px;
}

.form-contenedor h1{
    font-size: 30px;
    margin-bottom: 20px;
    color: #FFF8DF;
    position: relative;
}

.form-contenedor h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #FB5D02;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.input-campo{
    background: #8C8C8C;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: max-height 0.5s;
}
input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    padding: 18px 15px;
    color: #FFF8DF;
}

input::placeholder{
    color: #FFF8DF;
}

.input-campo i{
    margin-left: 15px;
    color: #FAD12F;
    font-size: 30px;
}

form p{
    color: #FFF8DF;
    text-align: left;
    font-size: 13px;
}

form p a{
    color: #FAD12F;
    font-weight: bold;
    margin-left: 7px;
    font-size: 20px;
}

.boton-campo{
    width: 100%;
    display: flex;/*permite la posicion*/
    justify-content: space-between;
    justify-content: center;   
    align-items: center;
}

.boton-campo button{
    flex-basis: 100%; /*ayuda a justificar el contenido*/
    font-size: 16px;
    background: #FAD12F;
    color: #000000;
    height: 40px;
    border-radius: 15px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.input-contenedor{
    height: 220px;
}
.boton-campo a{
    width: 100%;
    display: flex;/*permite la posicion*/
    justify-content: space-between;
    justify-content: center;   
    align-items: center;
    margin: 2px 0;
}
.boton-campo a button{
    flex-basis: 100%; /*ayuda a justificar el contenido*/
    font-size: 16px;
    background: #FAD12F;
    color: #000000;
    height: 40px;
    border-radius: 15px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
    font-weight: bold;
}

.advertencia{
    color: #FB5D02;
    font-weight: bold;
    font-size: 15px;
    
}

form span{
    color: #FFF8DF;
    text-align: left;
    font-size: 13px;
}

.input-campoche{
    background: #8C8C8C;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: max-height 0.5s;
    height: 30px;
}
.escoger{
    width: 15%;
    background: transparent;
    border: 0;
    outline: none;
    padding: 18px 15px;
    color: #FFF8DF;
}


footer{
    height: 100px;
    margin-bottom: 30px;
}

.footer-principal{
    padding-top: 20px;
    margin-bottom: 0px;
    font-size: small;
}