#full-body {
    font-family: sans-serif;
    background-color: #F0F2F5;
}


/* FORM STYLING STARTS HERE */

.form {
    width: 40%;
    margin: auto;
    margin-top: 120px;
    border-radius: 20px;
    background-color: white;
    padding: 40px 30px;
    padding-top: 0px;
    margin-bottom: 60px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.logo {
    width: 140px;
    height: 135px;
    margin: auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.19), inset 0px 8px 4px rgba(0, 0, 0, 0.14), inset 0px 4px 4px rgba(0, 0, 0, 0.09);
    border-radius: 50%;
    text-align: center;
    position: relative;
    top: -70px;
    background-color: #F0F2F5;
}

.form img {
    width: 85%;
    margin: auto;
}

.form h1 {
    color: #E9B44C;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin-top: -30px;
    letter-spacing: 1.8px;
}

.hr-img {
    width: 30%;
    height: 20px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

.hr-img img {
    width: 100%;
    height: 20px;
}

.form form input::placeholder, .form select {
    font-size: 13px;
    color: rgb(150, 150, 150);
}

.form form input {
    border-bottom: 2px solid #E9B44C;
    height: 45px;
}

.form form input:hover {
    border: 2px solid #E9B44C;
}

.form form input:focus {
    border: 2px solid #E9B44C;
    box-shadow: none;
}

.form select option {
    color: black;
}

.form select {
    padding-top: 8px;
    padding-bottom: 8px;
}

.form input, .form select {
    border: 1px solid rgb(222, 222, 222);
    border-bottom: 2px solid rgb(209, 209, 209);
    border-radius: 10px;
    margin-bottom: 25px;
}

.form span, .form label {
    color: gray;
    font-size: 14px;
}

.form .icon {
    color: rgb(148, 148, 148);
    font-size: 12px;
    float: right;
    position: relative;
    top: -52px;
    right: 13px;
    cursor: pointer;
}

.form .icon:hover {
    color: #E9B44C;
}

#country-input {
    display: none;
}

.line {
    color: gray;
    font-size: 12px;
}

.line a {
    text-decoration: none;
}

.signin-btn {
    width: 100%;
    border: 1px solid #E9B44C;
    border-radius: 30px;
    letter-spacing: 1.8px;
    color: #E9B44C;
    font-weight: bolder;
    font-size: 13px;
    padding: 8px 0px;
    margin-top: 10px;
    transition: background-color 0.4s, color 0.4s;
}
a{
    text-decoration: none;
}
.signin-btn:hover {
    background-color: #E9B44C;
    color: white;
}

@media screen and (max-width: 1200px) {
    .form {
        width: 55%;
    }
}

@media screen and (max-width: 820px) {
    .form {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .form {
        width: 92%;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 40%
    }

    .hr-img {
        width: 40%;
    }

    .logo {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .form h1 {
        font-size: 17px;
        line-height: 1.5rem;
    }
}

#otp-input {
    border-bottom: 2px solid #E9B44C;
}

#otp-input:hover {
    border: 2px solid #E9B44C;
}

#otp-input:focus {
    border: 2px solid #E9B44C;
    box-shadow: none;
}

#forgetModal p {
    font-size: 15;
    font-weight: bolder;
    color: #E9B44C;
}

#forgetModal input {
    border-bottom: 2px solid #E9B44C;
    margin-top: 10px;
}

#forgetModal input::placeholder {
    font-size: 14px;
}

 #forgetModal input:hover {
    border: 2px solid #E9B44C;
}

#forgetModal input:focus {
    border: 2px solid #E9B44C;
    box-shadow: none;
}