.background{
    margin:auto;
    width: 90vw;
    margin-top: 15vh;
    background: #2E47CE;
    height: 80vh;
    margin-bottom: 5vh;
    border-radius: 30px;
    padding: 50px;
}
.message-box{
    background-color: white;
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    width: 70%;
    height: 100%;
    margin-right: auto;
}
.input{
    width: 100%;
    height: 70px;
    border-radius: 15px;
    padding: 10px;
    padding-right: 65px;
    border: 0;
    background-color: #f1f1f1 !important;
    outline: 0;
    transition: 0.5s;
    border: 2px solid transparent;
    margin-bottom: 10px;

}
.input:focus{
    border-color: #2E47CE;
}
input::placeholder{
    color: #8f8f8f;
}
#name-input{
    background: url('../asset/connect/user_ic.svg');
    background-repeat: no-repeat;
    background-position: 95% center;
}
#pencile-input{
    background: url('../asset/connect/pencile.svg');
    background-repeat: no-repeat;
    background-position: 95% center;
}
#email-input{
    background: url('../asset/connect/email_ic.svg');
    background-repeat: no-repeat;
    background-position: 95% center;
}
.title{
    color: white;
    font-weight: 900;
}
.paragraph{
    color: rgba(255, 255, 255, 0.562);
    font-weight: 100;
    width: 90%;
    max-width: 400px;
    margin-top: 15px;
    
}
#message{
    height: 42%;
    padding: 20px;
}
.submit{
    width: 100%;
    height: 40px;
    border-radius: 15px;
    padding: 35px;
    border: 0;
    background-color: #FFC806;
    outline: 0;
    transition: 0.5s;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.submit:hover{
    background-color: #333333;
    color: #FFC806;;
}
@media only screen and (max-width:1447px) {
    .message-box{
        width: 90%;
    }
}
@media only screen and (max-width:1275px) {
    .input{
        padding-right: 55px;
    }
}
@media only screen and (max-width:992px) {
    .background{
        position: absolute;
        margin: 0;
        bottom: 0;
        height: 1050px;
        top: 90px;
        width: 100vw;
        border-radius: 0;
        padding: 10px;
        padding-top: 40px;
    }   
    .message-box{
        width: 100%;
        height: 620px;
    } 
    .paragraph{
        width: 100%;
        max-width: 100%;
    }
    .input{
        padding-right: 75px;
    }

    #name-input,#email-input{
        background-size: 25px;
    }
}

@media only screen and (max-width:700px) {
    .input{
        padding-right: 60px;
    }
}
@media only screen and (max-width:500px) {
    .input{
        padding-right: 50px;
    }
}
