/* Login */
.main-content{
    background: #FFFFFF;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    display: grid;
    margin-top: 30px;
    min-height: 83.1vh;
}
.form-section{
    height: 100%;
    place-items: center;
}
#register-form {
    background-color: #8a8583;
    width: 500px;
    border: none;
    padding: 20px 25px;
    border-radius: 5%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
#register-form .form-group{
    margin-bottom: 20px;
}
#register-form .input-field{
    width: 100%;
    position: relative;
}
#register-form .input-field i{
    position: absolute;
    padding: 10px;
    color: #fff;
    padding-top: 12px;
    padding-left: 13px;
    font-size: 20px;
    left: 0;
}
#register-form .input-field input{
    color: #fff;
    left: 0;
}
#register-form h3{
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
#register-form label{
    font-weight: 500;
}
#register-form input[type=text],
#register-form input[type=email],
#register-form input[type=tel],
#register-form input[type=password] {
    background-color: #A59E9A;
    color: #fff;
    margin: 10px auto;
    padding: 10px 15px;
    padding-left: 45px;
    border: none;
    border-radius: 20px;
}
::placeholder {
    color: #f4f2f2 !important;
  }
::-ms-input-placeholder {
    color: #f4f2f2;
}
input:-internal-autofill-selected {
    background-color: transparent !important;
    background-image: none !important;

}
#register-form input[type=text]:focus,
#register-form input[type=text]:active,
#register-form input[type=email]:focus,
#register-form input[type=email]:active,
#register-form input[type=tel]:focus,
#register-form input[type=tel]:active,
#register-form input[type=password]:focus,
#register-form input[type=password]:active {
    border: none;
    box-shadow: none;
}
#register-form .phone-field
{
    display: flex;
}
#register-form .phone-field select
{
    background: #A59E9A;
    padding: 10px 15px;
    margin-top: 10px;
    height: 44px;
    width: 135px;
    border: none;
    outline: none;
    padding-left: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #fff;
    word-spacing: 7px;
}

#register-form .phone-field input
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 10px;
}
#register-form .phone-field i{
    position: absolute;
    padding: 10px;
    color: #fff;
    padding-top: 23px;
    padding-left: 13px;
    font-size: 20px;
    left: 0;
}
#register-form label{
    color: #e9e9e9;
    font-weight: 400;
}
#register-form label a{
    color: #fafafa;
    text-decoration: none;
    font-weight: 500;
}
#register-form input[type="checkbox"]{
    transform: scale(1.5);
    margin: 7px 5px; 
}

.button-part {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}
.button-part .register-btn
{
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
    font-weight: 500;
    color: #111;
    background: #f7efd2;
    border-radius: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    border-radius: 20px;
    border: 2px solid #eed7a1;
}
.button-part .register-btn[disabled]
{
    opacity: 0.7;
}
.button-part .register-btn:hover
{
    background: #eeca76;
    color: #111;
    transition: ease-in .3s;
}
.form-section .login{
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
}
.form-section .login a{
    border: 1px solid #eed7a1;
    padding: 7px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #eed7a1;
    display: block;
    width: 200px;
    margin: 10px auto;
    text-align: center;
    font-weight: 500;
}
.form-section .login a:hover{
    color: #111;
    background-color: #eed7a1;
    transition: ease-in .5s;
}
.social-media
{
    margin-left: 0px;
}
.invalid-feedback
{
    color: #c70000;
}
/* Media Query */
@media only screen and (max-width: 767px) {
    #register-form {
        width: 90%;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .main-content{
        min-height: 77vh;
    }
    #register-form .phone-field select
    {
        background: #A59E9A;
        height: 42px;
    }
    #register-form label
    {
        font-size: 12px;
    }
}