body{
    margin: 0;
    padding: 0;
}
p,
label,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea{
    font-family: 'Poppins', sans-serif;
    color: white;
}
.body{
    background-color: #070517;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lrb-area{
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.area-title{
    font-size: 1.5rem;
    font-weight: normal;
}
.area-desc{
    color: #909090;
}
.input-wrapper{
    position: relative;
}
.lrb-area .input-wrapper{
    margin-bottom: 20px;
}
.lrb-area-inner{
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
}
.input-wrapper input{
    background-color: #0c0c0c;
    border-radius: 10px;
    border: 1px solid #8c8c8c;
    height: 3.75rem;
    width: 100%;
    padding: 18px 15px;
    font-size: 1rem;
}
.input-wrapper label{
    position: absolute;
    color: #909090;
    top: 18px;
    left: 15px;
    transition: 0.1s ease-in-out;
    pointer-events: none;
}
.input-wrapper input:focus ~ label,
.input-wrapper input:valid ~ label{
    top: 3px;
    font-size: 0.7rem;
}
.hidden{
    display: none;
}
.submit-form{
    height: 3.75rem;
    width: 100%;
    border-radius: 10px;
    background-color: #0043c5;
    color: white;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: bold;
}
.form-redirect{
    color: #909090;
}
.form-redirect span{
    color: #0043c5;
    font-weight: bold;
    cursor: pointer;
}
@media screen and (min-width: 700px){
    .lrb-area{
        max-width: 600px;
        max-height: 600px;
        border-radius: 10px;
    }
    .lrb-area-inner{
        padding: 100 115px;
    }
}