/* Common css */

body,
p {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    color: #181818;
}

/* Custom font for headings */
h1,
h2,
h3,
h4,
h5,
h6,
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

a {
    text-decoration: none;
}


.btn-primary.signup {
    font-size: 16px;
    border-radius: 5px;
    padding: 10px;
    font-weight: 400;
    background-color: #555555;
    border-color: #555555;
}

.btn-primary.signup:hover {
    background-color: #555555;
    color: #fff;
    border-color: #555555;
}

/* regitration page */
.registration-main {
    background: #e6e6e642;
    padding: 80px 0px;
}

.contact-box {
    display: flex;
    background: #ffffff;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0px 6px 13px #30282821;
    align-items: center;
}
.form-main{
    padding: 40px 50px;
    width: 100%;
}
.contact-img{
    width: 100%;
}

*:focus,
.form-control:focus {
    outline: 0;
    box-shadow: none;
    border-color: #000;
}

.form-group label, .contact-box label{
    font-weight: 500;
    color: #181818;
}

.form-group input {
    padding: 10px;
    margin: 5px 0px;
    width: 100%;
    border: 1px solid #bdbdbd;
    border-radius: 0px;
}

.form-group textarea {
    padding: 10px;
    margin: 5px 0px;
    width: 100%;
    border: 1px solid #bdbdbd;
    border-radius: 0px;
}


.form-group {
    margin: 15px 0px;
}

::placeholder,
.form-control::placeholder {
    color: #bbbaba;
    font-weight: 400;
}

.signup.contact {
    margin: 20px 0px;
    width: 100%;
}
hr{
    background-color: #7d7d7d;
}
input[type=date]::-webkit-datetime-edit {
    color: #ccc;
}
.contact-box .forgot-pass a {
    color: #7d7d7d;
    text-decoration: underline;
}
.contact-box h4{
    text-align: center;
    color: #323232;
    font-size: 28px;
}
.contact-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.forgot-pass{
    text-align: center;
}
.google-box {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #7d7d7d;
    border-radius: 4px;
    color: #7d7d7d;
}
.google-box img {
    width: 20px;
}

/* resposive css*/
@media only screen and (max-width: 991px) {
    .form-main {
        padding: 40px 20px;
        width: 100%;
    }
    .contact-img {
        width: 100%;
        height: 750px;
    }
}
@media only screen and (max-width: 767px) {
    .contact-box{
        flex-direction: column-reverse;
    }
    .form-main{
        padding: 40px 30px;
    }
    .contact-img{
        display: none;
    }
}
