.bg-img {
    background: url('bg4.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.comming-soon-bg-img {

    max-height: 100%;
    width: auto;
}

.bg-img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    text-align: center;
    padding: 40px 32px 100px 32px;
    width: 370px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);
}

.login-logo {
    display: flex;
    justify-content: center;
}

.login-logo img {
    padding: 15px 10px 30px;
}

.login-title {
    margin-bottom: 1.2rem;
    font-weight: bold;
    color: antiquewhite;
}

.login-info {
    margin-bottom: 0.6rem;
    color: antiquewhite;
}

.login-input-text {
    margin-bottom: 1rem;
}

.login-input-text input {
    outline: none;
    border: 1px solid #efefef;
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    line-height: 3rem;
}

.login-btn {
    margin-bottom: 2rem;
}

.login-btn button {
    background-color: brown;
    color: beige;
    line-height: 3rem;
    font-size: medium;
}

.login-btn button:hover {
    background-color: #45212D;
    color: beige;
}

.login-terms-and-conditions {
    color: white;
}

.login-terms-and-conditions a {
    color: cornflowerblue;
}

#resend-otp a {
    font-size: medium;
}