@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}   

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(faustino.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: rgb(250,225,225);   
}

.container{
    width: 450px;
    background-color: rgba(255, 255, 255, 0.2);
    border: solid 2px rgb(250,225,225);
    border-radius: 10px;
    color: rgb(250,225,225);
    padding: 20px 40px 20px 10px;
    }
.container h1{
    text-align: center;
}

.imput-box{
    position: relative;
    width: 95%;
    height: 40px;
    margin: 30px;
}

.imput-box input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: solid 2px rgb(250,225,225);
    border-radius: 15px;
    outline: none;
    color: rgb(250,225,225);
    padding: 20px 40px 20px 20px;

}

.imput-box input::placeholder{
    color: rgb(230,225,225);
}

.imput-box i{
    position: absolute;
    right: 20px;
    top: 24%;
    font-size: 20px;
}

button{
    width: 108%;
    height: 50px;
    background-color: rgb(255, 255, 255);
    color: #c3c3c3;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500px; 
}

button:hover{
    background-color: #fff;
    color:black;
    transition: 0.3s;
    
}