#registration {
    padding: 50px;
    position: absolute;
    width: 100%;
    overflow-x: hidden;
    background-image: url(../img/login_bg.png);
    top: 0;
    left: 0;
    background-color: #000;
    background-repeat: no-repeat;
}


#registration h1 {
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    letter-spacing: 2px;
    margin: 0 0 25px;
}

#registration .welcome-message {
    font-size: 16px;
    text-align: left;
    color: #fff;
}

#registration .btn-reg,
#registration .social_button {
    text-align: center;
    font-size: 16px;
    border: none;
    height: 40px;
    cursor: pointer;
    width: 100%;
    color: #fff;
    margin-top: 15px;
    border-radius: 50px;
    background: rgb(0, 128, 190);
    line-height: 30px;
    background: radial-gradient(circle, rgba(0, 128, 190, 1) 0%, rgba(0, 180, 227, 1) 50%, rgba(0, 128, 190, 1) 100%);
}

#registration .social_button:hover {
    text-decoration: none;
}

#registration label {
    font-size: 16px;
    color: #fff;
}

#registration input {
    background-color: transparent !important;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
}

#registration input:-internal-autofill-selected {
    background-color: transparent !important;
}

#registration input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px rgba(0, 0, 0, 0.9);
    -webkit-text-fill-color: #fff;
}

#registration input.error {
    border: 1px solid red;
}

#registration span.error {
    display: block;
    color: red;
}

#registration .social_button {
    margin-top: 50px;
}

#registration .bot_pic {
    width: 90%;
}


@media screen and (min-width: 480px) and (max-width: 991px) {
    #registration {
        height: 100%;
    }

    #registration h1 {
        margin: 0 0 70px;
    }

    #registration .bot_pic {
        display: none;
    }

    #registration .welcome-message {
        display: none;
    }

    #registration .social_button {
        margin-top: 150px;
    }
}