@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; 
    font-size: small;   
}
body{
   background: url(../img/Estacion.jpeg);
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
   width: 100%;   
}
.wrapper{
    width: 330px;
    padding: 2rem 1rem;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}


input{
    width: 92% !important;
    outline: none !important;
    border: 1px solid #fff !important;
    padding: 12px 20px !important;
    margin-bottom: 10px !important;
    border-radius: 20px !important;
    background: #e4e4e4 !important;
    margin-left: 8px !important;
}

input :focus{
    border: 1px solid rgb(192, 192, 192) !important;
}


.btniniciar{
    font-size: 1rem !important;
    margin-top: 1.8rem !important;
    padding: 10px 0 !important;
    border-radius: 20px !important;
    outline: none !important;
    border: none !important;
    width: 90% !important;
    color: #fff !important;
    cursor: pointer !important;
    background: rgb(16, 30, 121) !important;
}

.btniniciar:hover{
    background: rgba(17, 107, 143, 0.877) !important;
}

