/*Frequently used properties*/
html,body {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    height: 100vh;
}


.module {
    height: 100vh;
    /*overflow-y: auto;*/
    background-color: #000000;
}

.main_container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.header_wrapper {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language {
    position: absolute;
    padding-top: 10px;
    right: 50px;
}

.main_logo {
    max-width: 400px;
}


.body_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body_wrapper h1 {
    font-size: 22px;
    line-height: 27px;
    font-family: "Gilroy", sans-serif ;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.body_wrapper input, .input-prefix, .input-phone, .home_btn {
    margin: 15px 0;
    padding: 25px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    /*width: 100%;*/
    border-radius: 4px;
    transition: 0.7s;
    color: #7E7E7E;
    background-color: #D9D9D9;
    border: 1px solid transparent;
    width: 60%;
}

.body_wrapper input{
    text-align: left;
}

.home_btn:hover {
    opacity: 0.8;
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.input-container {
    display: flex;
    gap: 30px;
    width: 60%;
    height: 100%;
}

.input-prefix {
    border: 1px solid #ccc;
    width: auto;
}

.input-phone {
    flex-grow: 1;
    border: 1px solid #ccc;
    /*width: auto;*/
}

.btn_send {
    font-weight: 700;
    font-size: 18px ;
    line-height: 22px;
    padding: 20px 40px;
    border-radius: 4px;
    transition: 0.8s;
    margin-top: 20px;
    border: 2px solid transparent;
    color: #ffffff;
    background-color: #C91414;
    box-shadow: 0px 4px 40px 0px #C91414;
}

.btn_send:hover {
    opacity: 0.6;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #C91414;
    cursor: pointer;
}

.arrow_left {
    position: absolute;
    width: 30px;
    left: 50px;
}

.promo_code {
    width: 30%;
    margin: 0 auto;
}
