.container_ {

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
}

.login_content h1 span {
    font-weight: 600;
}

.login_content {
    min-width: 420px;
    line-height: 3rem;
    text-align: left;
    padding: .5rem;
}

.logo {
    margin-bottom: 3rem;
}

.num_input {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.num_input input {
    padding: .8rem;
    border-radius: 7px;
    border: none;
    background-color: #f0efef;
    outline: none;
    width: 100%;
}

.num_input span {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: .8rem;
    border: 1px solid black;
    border-radius: 7px;
    width: 50px;
    top: 48px;
    display: flex;
    align-items: center;
    background-color: #eeeeee;
}

.input_ {
    width: 100%;
    display: flex;
    justify-content: start;
    border: 1px solid black;
    border-radius: 7px;
    /* margin-left:3rem; */
    /* padding-left: 2.5rem; */
    background-color: #f0efef;
}

.form .get_otp {
    width: 100%;
    padding: .1rem;
    background-color: black;
    border-radius: 10px;
    color: white;
    border: none;
    outline: none;
    margin-top: 2rem;
    cursor: pointer;
}

.form .get_otp a {
    text-decoration: none;
    color: white;
}

label {
    font-size: .8rem;
}

.container_ {
    background-image: url('/assets/images/login_page_banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
}





/* //////  Media query  ////// */


@media (max-width: 420px) {
    .login_content {
        min-width: 320px;
    }

    .logo img {
        width: 200px;
        height: 100%;
    }

    .logo {
        margin-bottom: 1rem;
    }
}