@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

*{
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
    display: flex;
    min-height: 98vh;
    background: #d4ccc7;
    align-items: center;
    justify-content: center;
}

.card{
    background-color: rgba(255, 255, 255, .60);
    width: 430px;
    padding: 30px;
    border: none;
    border-radius: 10px;
    text-align: center;
}

.title{
    cursor: default;
}

/*img{
    width: 100px;
}*/

/*input{
    border: none;
    border-radius: 50px;
    text-align: center;
    outline: none;
    padding: 23px 115px;  
    background: white;
    font-size: 16px;
    width: 45%;
}*/

form input:focus{
    background: white;
}

/*.material-symbols-rounded{
    position: absolute;
    opacity: .8;
    margin-top: 19px;
    margin-left: 25px;
}*/

.btn{
    width: 100%;
    padding: 17px;
    border-radius: 50px;
    outline: none;
    border: none;
    margin-top: 20px;
    background: brown;
    color: #000;
}

#btn-sub{
    margin-left: 10px;
}

.btn:hover{
    background: brown;
    cursor: pointer;
}

#btn-container{
    width: 100%;
    display: flex;
    overflow: hidden;
}

@media screen and (max-width: 767px) {

    .card{
        width: 70vw;
        align-items: center;
        justify-content: center;
    }

    #btn-sub{
        margin-left: 0;
    }

    .input{
        min-width: 85%;
        padding: 17px;  
    }

    .icon{
        margin-top: 13px;
    }
}

.responsive-img {
    display: block;
    width: 100%;      
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin: 0 auto;
}


@media screen and (min-width: 768px) {
    .responsive-img {
        width: 35%;    
        
    }
}
