
@font-face {
    font-family: Averta;
    src: url('/static/fonts/Averta Standard Regular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Averta;
    src: url('/static/fonts/Averta Standard Semibold.woff2') format("woff2");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Averta;
    src: url('/static/fonts/Averta Standard Bold.woff2') format("woff2");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Averta;
    src: url('/static/fonts/Averta Standard Extra Bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal
}

*,:after,:before {
    box-sizing: border-box;
    border: 0 solid;
    line-height: inherit
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: 'Averta', Helvetica, sans-serif;
    margin: 0;
    background-color: #fff;
    color: #000;
}
  
a {
    font-family: 'Averta', Helvetica, sans-serif;
    text-decoration: none;
}

p {
    font-family: 'Averta', Helvetica, sans-serif;
    margin: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Averta', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

button, select, input {
    font-family: 'Averta', Helvetica, sans-serif;
}

.mg-top-15 {
    margin-top: 15px;
}

:root {
    --indexlexgreen: #BEEEC4;
    --white: #ffffff;
    --black: #000;
}

.flex {
    display: flex;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 800;
}

.fw-800 {
    font-weight: 800;
}

.flex-column {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-space-btw {
    justify-content: space-between;
}

.flex-align-center {
    align-items: center;
}

.flex-justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Display Utilities */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.margin-0 {
    margin: 0;
}

.margin-top-10 {
    margin-top: 10px;
}

.padding-0 {
    padding: 0;
}

.color-white {
    color: #fff;
}

.auth-screen {
    display: grid;
    grid-template-columns: 5fr 3fr;
}

.features-in-auth {
    background-color: #000;
    border-right: 7px solid #404D42;
    min-height: 100vh;
    height: auto;
    padding: 65px 80px 62px 65px;

}

.logo-header {
    width: 164px;
    height: auto;
}

.moto-auth {
    margin-top: 70px;
}

.auth-feature-check-img {
    width: 19px;
}

.auth-feature-check-title {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.modal-content > .auth-feature-check-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.modal-content > .flex > .auth-feature-check-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.auth-features > div {
    gap: 12px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.testimonial {
    display: grid;
    grid-template-columns: 102px 1fr;
    background-color: #282828;
    padding: 15px 15px;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 700px;
}

.testimonial-text {
    color: #fff;
    font-size: 16px;
    font-size: 500;
}

.testimonial-name {
    color: #dfdfdf;
    font-size: 15px;
    font-size: 400;
    margin-top: 8px;
}

.testimonial > img {
    width: 84px;
    border-radius: 50%;
}

.testimonial > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-button {
    padding: 14px 10px;
    background-color: #000000;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    color: #fff;
}

.auth-form-wrapper {
    width: 100%;
    padding: 20px 20px;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 134px;
}

.auth-title {
    text-align: center;
    font-size: 31px;
    color: #3d3d3d;
}

.auth-subtitle {
    text-align: center;
    font-size: 16px;
    margin-top: 9px;
    margin-bottom: 16px;
}

label {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 3px;
    margin-top: 6px;
    display: block;
}

input[type="text"], select, input[type="password"], input[type="email"] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
    width: 100%;
    height: 44px;
    font-size: 15px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

.form-flex {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-logo-small {
    display: none;
    width: 200px;
    height: auto;
    margin-top: 60px;
}

@media screen and (max-width: 1200px) {

    .auth-screen {
        grid-template-columns: 5fr 4fr;
    }

}

@media screen and (max-width: 1000px) {

    .auth-screen {
        grid-template-columns: 1fr;
    }

    .features-in-auth {
        display: none;
    }

    .auth-logo-small {
        display: flex;
        margin: 0 auto;
        margin-top: 12px;
        margin-bottom: 37px;
    }

    .auth-form-wrapper {
        margin-top: 34px;
        max-width: 440px;
    }

    .auth-form {
        padding: 12px 14px 17px 12px;
        border-radius: 12px;
        border: 1px solid var(--gray-200, #eaecf0);
        background: var(--base-white, #fff);
        box-shadow: 0 1px 2px 0 rgba(16,24,40,.06), 0 1px 3px 0 rgba(16,24,40,.1);
    }
}

