body{
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 50px;
}
.container{
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.01);    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 11px;
    padding: 60px;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.container .logo{
    margin-bottom: 20px;
}
.container .logo h2 , .container .logo h2 span{
    font-size: 20px;
}
.container h3{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}
.container form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
input ,textarea{
    padding: 10px 15px;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    border-radius: 10px;
    margin-bottom: 20px;
}
input:focus {
    border: 1px solid var(--secd-bg-black);
}
.container form .name input:first-child{
    margin-right: 13px;
}
.btn{
    width: calc(3 * 100px);
    margin: 0 auto;
}
.btn-f{
    width: auto!important;
}
p{
    margin-bottom: 30px;
    text-transform: capitalize;
}
@media(max-width:450px){
    .container{
        padding: 20px;
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin-bottom: 0;
    }
    body{
        padding-top: 0;
    }
    input, textarea,.btn{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .name input{
        width: 100%;
    }
    textarea{
        margin-bottom: 30px;
    }
    .btn{
        width: 50%;
    }
    
}