
 :root {
    --main-font: 'Mulish', sans-serif;
    --extra-bold: 900;
    --very-bold: 800;
    --bold: 700;
    --mid-bold: 600;
    --light-bold: 500;
    --regular: 400;
    --light: 300;
    --extra-light: 200;
}

* {
    Margin: 0;
    Padding: 0;
}

*,
*::beffore,
*::after {
    Box-sizing: inherit;
}

Html {
    Box-sizing: border-box;
    Font-size: 62.5%;
}

.treacher-registration-container {
    display: flex;
    flex-direction: column;
}

.header {
    background-image: url('../../img/teacher-directory/teacher@3x.png');
    background-size: cover;
    background-position: top;
    height: 481px;
    margin-top: 76px;
}

.orange-stripe {
    background-color: #ff6d00;
    height: 0.6rem;
}


/* ============================================
              nav bar
   ============================================ */


.nav-bar {
    background-color: white;
    padding-top: 23px;
    padding-bottom: 29px;
    display: flex;
}

.logo {
    width: 72px;
    height: 45px;
    margin-left: 6rem;
}

.nav-bar-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-grow: 2;
    padding-right: 40px;
}

.nav-bar-links-list>li {
    padding-left: 30px;

}

.mobile-logo {
    display: none;
}

.mobile-nav-bar {
    display: none;
}

.push {
    margin-left: auto;
}

.nav-bar-links {
    font-family: var(--main-font);
    font-size: 16px;
    color: #ff6d00;
}

.nav-bar-links:hover {
    color: #ff6d00;
}

.login {
    color: #ff6d00;
    font-family: var(--main-font);
    font-size: 16px;
    position: absolute;
    right: 63px;
    top: 42px;
}

.mobil-start-trial {
    display: none;
}


/* ============================================
             Header
   ============================================ */


.heading {

    margin-top: 50px;
}

.heading>h1 {
    font-size: 5rem;
    color: white;
    font-family: var(--main-font);
    font-weight: var(--bold);
    line-height: 6rem;
    letter-spacing: -0.5px;
}

.be-the-teacher {
    color: white;
    font-family: var(--main-font);
    font-weight: var(--bold);
    font-size: 18px;
}

.small-orange-line {
    background-color: #ff6d00;
    height: 0.5rem;
    width: 10rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.description>p {
    font-size: 1.6rem;
    line-height: 26px;
    color: white;
    font-family: var(--main-font);
    font-weight: var(--bold);
    margin-top: 1.5%;
}

.free-learning-tools {
    color: white;
    font-size: 16px;
    margin-top: 20px;
    font-family: var(--main-font);
    font-weight: var(--bold);

}

.free-learning-tools>a {
    text-decoration: none;
    color: white;
    font-family: var(--main-font);

    letter-spacing: 1px;
    font-size: 16px;
}

.free-learning-tools>a:hover {
    color: #B93C04;
}

.header-align-items {
    margin-left: 13%;
}

.main {
    background-color: #f0f0f0;
    color: #20114a;
    /* padding-bottom: 570px; */
    padding-top: 90px;
}

.mobile-content {
    display: none;
}

.main-container {
    width: 88%;
    align-self: center;
    display: flex;
    justify-content: center;
    margin: auto;
}

/* ============================================
                1,2,3 steps
   ============================================ */

.steps {
    width: 598px;
}

.instruction {
    font-family: var(--main-font);
    font-weight: var(--bold);
    width: 77%;
}

.instruction>p {
    width: 460px;
}

.stepd__details {
    width: 77%;
}

.stepd__details>section {
    margin-bottom: 10%;
}

.steps-heading {
    font-family: var(--main-font);
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    display: flex;
}

.heading-number {
    display: block;
    margin-right: 15px;
}

.about-lingopie {
    padding-left: 33px;
}

.step-content {
    margin-left: 36px;
    font-size: 1.6rem;
    font-family: var(--main-font);
    line-height: 2.6rem;

}

/* ============================================
                Teacher registration form
   ============================================ */

.back-end-error {
    color: red;
    font-size: 14px;
}

.registration {
    position: relative;
    width: 598px;
    height: 1250px;
}

.registration__form {
    position: absolute;
    background-color: white;
    top: -26rem;
    box-shadow: 0 0 22px 0 rgba(54, 54, 54, 0.15);

}

.top-form-group {
    padding: 5rem 6rem 3.2rem 6rem;
}

.sign-up {
    margin-bottom: 30px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.middle-form-group {
    padding: 2.6rem 6rem 3.2rem 6rem;
}

.bottom-form-group {
    display: flex;
    flex-direction: column;
    padding: 2.6rem 6rem;
}

input,
select,
textarea {
    background-color: #f2f2f2;
    border: none;
    border-radius: 2px;
    color: #20114a;
    font-family: var(--main-font);
    font-size: 1.6rem !important;
    padding: 1rem 1.6rem 1.4rem 1.6rem;
}

textarea {
    width: 100%;
    height: 12.5rem;
}

input,
textarea {
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: solid 1px #ff6d00;

}

#yourHourlyRate {
    padding-left: 26px;
}

#hourly-rate-container {
    position: relative;
}

#hourly-rate-container:before {
    content: '$';
    position: absolute;
    top: 39px;
    left: 14px;
    z-index: 1;
    font-size: 16px;
}

label,
#uploadImage {
    color: #7c7c7c;
    font-size: 1.6rem;
    font-family: var(--main-font);
    display: block;
    margin-bottom: 0.5rem;
}

.top-form-group__input,
select {
    height: 5rem;
    display: block;
}

.top-form-group-top,
.top-form-group-middle,
.top-form-group-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.top-form-group-top>div,
.top-form-group-middle>div {
    width: 49.3%;
    position: relative;
}

.top-form-group-bottom>div {
    width: 32.5%;
}

.top-form-group-bottom>div>input,
.top-form-group-bottom>div>select,
.top-form-group__input--width {
    /* width: -webkit-fill-available; */
    width: 100%;
}

.line {
    border: solid 0.5px #d1d1d1;
}

label[for="recomendLingopie"] {
    margin-top: 2rem;
}

.bottom-form-group-top {
    display: flex;
    justify-content: space-around;
}

.bottom-form-group-top>div {
    width: 36%;
}

.bottom-form-group-top>.bottom-form-group-top-image {
    width: 25%;
    position: relative;
}

.bottom-form-group-top>div>input {
    /* width: -webkit-fill-available; */
    width: 100%;
    height: 5rem;
    box-sizing: border-box;
}

.bottom-form-group-bottom {
    margin-top: 3rem;
}

#image {
    display: none;
}

label[for="image"] {
    border-radius: 25px;
    height: 50px;
    width: 100px;
    background-color: #ff6d00;
    background-image: url('../../img/teacher-directory/fill-1.png');
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.7s ease-in-out;
}

label[for="image"]:hover {
    background-color: #B93C04;
    cursor: pointer;

}

button[type="submit"],
#loader {
    display: block;
    height: 60px;
    border-radius: 4px;
    background-color: #3aa2e2;
    border: none;
    width: 100%;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    font-family: var(--main-font);
    font-weight: var(--bold);
    transition: background 0.5s ease-in-out;
    outline: none !important;
}

.imageLoaded {
    font-size: 14px;
    color: #322558;
    font-family: var(--main-font);
    display: block;
    margin-left: 10px;
}

button[type="submit"]:hover {
    background-color: rgb(20, 121, 184);
    cursor: pointer;
}


#loader {
    background-image: url('../../img/popups/white-loader.gif');
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.bottom-form-group>input {
    height: 5rem;
}

.favorite-form-group {
    padding: 25px 62px 41px 61px;
}

.favorite-form-group-top>div,
.favorite-form-group-middel>div {
    width: 49%;
}

.favorite-form-group-top>div>label,
.favorite-form-group-middel>div>label {
    display: block;
}

.favorite-form-group-top,
.favorite-form-group-middel {
    display: flex;
    justify-content: space-between;
}

.favorite-form-group-middel {
    margin-top: 21px;
}

.fav-input {
    width: 100%;
}

input[type="checkbox"] {
    margin-top: 20px;
}

.tell-me-more {
    margin-left: 10px;
    font-size: 14px;
}