@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
    background-color: black;
}
.block{
    width: 650px;
    height: 630px;
    background-color: yellow;
    margin: 0 auto;
    position: relative;
}

span{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
}
.title{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}

.box{
    width: 630px;
    height: 420px;
    background-color: white;
    position: absolute;
    left: 100px;
    position: relative;
    box-shadow: 0px 5px 12px -1px rgba(0,0,0,0.75);
}
.avatar{
    width: 90px;
    height: 90px;
    border-radius: 50px;
    position: absolute;
    top: -35px;
    left: 70px;
}
.input-box{
    padding-top: 70px;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    
}
label{
    color: gray;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}
.input1, .input4, .textarea{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 400px;
}
input, textarea{
    border: none;
    border-bottom: 1px solid gray ;
    outline: none;
    padding-bottom: 8px;
}
textarea{
    padding-bottom: 25px;
}
.input2, .input3{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 200px;
}

.first-last{
    display: flex;
}
.btn{
    display: flex;
    padding: 68px;
    column-gap: 20px;
    position: absolute;
    left: 240px;
}
button{
    border: none;
background-color: inherit;
font-size: 18px;
cursor: pointer;
}
input::placeholder{
    color: rgb(72, 71, 71);
}
textarea::placeholder{
    color: rgb(72, 71, 71);

}