@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    height: 150vh;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #dcdcdc;
}
.container{
    position: absolute;
    top: 60px;
    right: center;
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 20px 10px;
    border-radius: 5px;
}
.container .title{
    font-size: 30px;
    font-weight: 700;
    position: relative;
    text-align: center;
}
.container .title::before{
    /*content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;*/
    /*background: linear-gradient(135deg, #71b736, #9b59b6);*/  
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0px !important; /* Forzar la eliminación de la línea */
    width: 0px !important;
    background: transparent !important;
}

.container .title1{
    font-size: 15px;
    font-weight: 300;
    position: relative;
    text-align: center;
}

.container .title2{
    font-size: 15px;
    font-weight: 300;
    position: relative;
    text-align: center;
    color: red;
}

.container form .user-details{
    display: flex;
    flex-wrap: wrap;    
    justify-content: space-between;
    margin: 20px 0 12px 0;
}
form .user-details .input-box{
    margin-bottom: 15px;
    width: calc(100% / 1 - 5px);
}
.user-details .input-box .details{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;

}
.user-details .input-box input{
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
} 
.user-details .input-box input:focus,
.user-details .input-box input:valid{
    border-color:#808080;
}
form .button{
    height: 40px;
    width: 200px;
    margin: auto;
    padding: 5;
    
}
form .button input{
    margin-bottom: 10px;
    height: 100%;
    width: 100%;
    outline: 5px;
    color: #33A2FF;
    border: 1px solid white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    letter-spacing: 1px;
    /*background: none;*/
}
form .button input:hover{
    background: #3c3c3c;    
}

.img-container {
    text-align: center;
  }


form .textarea1{
    margin-bottom: 20px ;
    width: 400;
}
.textarea1 .details{
    display: block;
    font-weight: 700;
    margin-bottom: 7px;

}
.textarea1 textarea{
    height: 200px;
    width: 650px;
    outline: none;
    border-radius: 5px;
    border: 3px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 5px;
    transition: all 0.3s ease;
} 
.textarea1 textarea:focus,
.textarea1 textarea:valid{
    border-color:#808080;
}




@media (max-width: 584px){
    .container{
        max-width: 100%;
    }
    form .user-details .input-box{
        margin-bottom: 15px;
        width: 100%;
    }
    .container form .user-details{
        max-height: 300px;
        overflow-y: scroll;        
    }
    .user-details::-webkit-scrollbar{
        width: 0;
    }
}







