*{
    padding:0;
    margin:0;
}
.content{
    width: 100%;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(#00A79D,#000);
}

.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
    background-color: #fff;
    mix-blend-mode: lighten;
    border-radius: 10px 30px 10px 30px;
    padding:50px 30px;
}
.form  span{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom:20px;  
    position: relative;  
}


.form  span:before{
    position: absolute;
    content:"";
    width:50px;
    height:1px;
    background-color: #353535;
    top:50%;
    left:-60px
}
.form  span:after{
    position: absolute;
    content:"";
    width:50px;
    height:1px;
    background-color: #353535;
    top:50%;
    right:-60px;


}
.form form{
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;

}




.form form input,
.form form button{
    width: 300px;
    height:40px;
    border-radius: 4px;
    border:1px solid rgba(0,0,0,.25);
    outline:0;
}

.form form input{
    padding:10px;
    box-sizing: border-box;
}


.form form button{
    background-color: #353535;
    color:#fff;
    cursor:pointer;
}