/*
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 : 3 ene 2024, 14:20:06
    Author     : victor.andrade
*/

body{
    margin:0;
    padding: 0;
    font-family: montserrat;
    background: #3C64F3;
    height: 100vh;
}
.formulario{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    border-radius: 10px;
}
.formulario h1{
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
}
.formulario form{
    padding: 0 40px;
    box-sizing: border-box;
}
form .username{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
  
}
.username input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border:none;
    background: none;
    outline: none;
    cursor: pointer;
    
}
.username span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c3483;
    transition: .5s;
    
}
.username input:focus~label,
.username input:focus~label{
    top: -5px;
    color: #6c3483;
}
.username input:focus~span::before,
.username input:focus~span::before{
    width: 100%
}
.recordar{
    margin: -5px 0 20px 5px;
    color: #0000FF;
    cursor: pointer;
}
.recordar:hover{
    text-decoration: underline;
}
input[type="submit"]{
    width: 90%;
    height: 50%;
    border: 1px solid;
    background: #FEFEFE;
    border-radius: 25px;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
    outline: none;
}
input[type="submit"]:hover{
    border-color: #3887ff;
    transition: .5s;
}
.btn1{
    display: inline-block;
    background-color: silver;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin: 25px;
    padding: 5px;
    border: none;
}
