body {
    margin: 0;
    font-family: "MyCustomFont", Arial, sans-serif;
    padding: 0;
    height: 100vh;
}

html {
    height: 100%;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Black-Italic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Medium.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Regular.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Bold-Italic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Extra-Bold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "MyCustomFont";
    src: url("../font/TT-Norms-Extra-Bold-Italic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
}


.login-page {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-page .container {
    display: flex;
    /* height: 100vh; */
    height: 100%;
}

.left-panel {
    width: 31.5%;
    height: 100%;
    padding: 0;
}
.left-panel img{
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    object-fit: cover;
    height: 100%;
}

.right-panel {
    width: 66%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 60px;
}

.input-group {
    display: grid;
    gap: 10px;
}

.mobile-row {
    display: flex;
    padding: 0;
}

.mobile-row .country-code {
    background: #f7f7f7;
    border: 0;
    line-height: 0;
    height: 47px;
    border-radius: 8px 0px 0px 8px;
    padding: 0px 5px;
}

.login-form.signup-form {
    width: 100%;
    max-width: 596px;
    padding-top: 25px;
}

.login-form h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.login-form .subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.login-form .signup-link {
    color: #e54545;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}

.login-form .oauth-btn {
    margin-bottom: 10px;
    /* height: 42px; */
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: box-shadow .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    gap: 8px;
}

.login-form .oauth-btn svg {
    fill: #fff !important;
}

.Forgot-svg {
    display: flex;
    align-items: center;
    margin: 30px auto;
}

.login-form .input-group .subtitle {
    color: #555;
    font-size: 15px;
    text-align: left;
    font-weight: 300;
    line-height: 19px;
    margin-bottom: 2px;
}

.login-form .oauth-btn.google {
    background: rgb(80 126 244);
}

.login-form .oauth-btn.facebook {
    background: rgb(59, 89, 152);
}

.login-form .oauth-btn.apple {
    background: #000;
}

.login-form .divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #888;
    margin: 18px 0 18px 0;
    font-size: 0.98em;
}

.login-form .divider span {
    margin: 0 15px;
    color: #606060ff;
    font-size: 14px;
    font-weight: 300;
}

.login-form .divider:before,
.login-form .divider:after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.login-form .password-label span {
    font-size: 14px;
    color: #191919ff;
    display: flex;
    font-weight: 200;
}

.login-form .password-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.login-form label {
    font-size: 16px;
    margin-top: 0px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.login-form .input-group .input-field {
    display: grid;
    gap: 0px;
    width: 100%;
}

.login-form .input-grid {
    display: flex;
    gap: 13px;
    width: 100%;
}

.login-form input {
    height: 40px;
    border-radius: 8px;
    border: none;
    padding: 3px 12px;
    font-size: 1.07em;
    margin-bottom: 10px;
    background: #f7f7f7;
}
.input-grid .input-field input {
    width: 93%;
}
.login-form.signup-form input[type="tel"] {
    height: 40px;
    border-radius: 8px;
    border: none;
    padding: 3px 12px;
    font-size: 1.07em;
    margin-bottom: 10px;
    background: #f7f7f7;
    width: 100%;
    /* border: 0px; */
    border-radius: 0px 8px 8px 0px;
}

.login-form .input-filde {
    display: grid;
}

.login-form .password-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #f7f7f7;
    border-radius: 8px;
}

.login-form .password-row input {
    margin-bottom: 0;
    width: 100%;
}

.login-form .show-btn {
    position: absolute;
    right: 14px;
    color: #000000;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 16px;
}

.login-form .reset-link {
    font-size: 16px;
    color: #000000;
    margin-bottom: 18px;
    margin-top: 10px;
    align-self: flex-start;
    text-decoration: underline;
}

.login-form .signin-btn {
    height: 40px;
    border: none;
    background: #ef2222;
    color: #fff;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.1s;
    margin-top: 40px;
    width: 100%;
}

.login-form .sign-btn {
    border: none;
    background: #f1f1f1;
    color: #000000;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.1s;
    margin-top: 20px;
    padding: 11px 10px;
    text-align: center;
    text-decoration: none;
}

.login-form .href-link {
    font-size: 16px;
    line-height: 23px;
}

.login-form .href-link a {
    font-size: 16px;
    line-height: 23px;
    color: rgb(51, 68, 221);
    font-weight: 600;
    text-decoration: underline;
}

.login-form .signin-btn:hover {
    background: #d11e1e;
}

.login-form.signup-form .signin-btn {
    margin-top: 10px;
}

.inner-page .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0px 20px;
    height: auto !important;
}

.inner-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    margin-bottom: 0px;
    width: 100%;
}

.inner-page .header .logo {
    margin: 0px 0px;
}

.inner-page .terms-page_header {
    background: #FFF8EE;
}

.inner-page .privacy-wrapper {
    padding: 30px 0px 0px;
}

.inner-page .sign-btn {
    border: none;
    background-color: #ee3123;
    color: #fff;
    z-index: 2;
    transition: 0.3s;
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
}

.signin-btn {
    background: #ee3123;
    color: #fff;
    border: none;
    padding: 6px 18px;
    font-size: 11px;
    border-radius: 2px;
    cursor: pointer;
}

.inner-page .privacy-title {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 0;
}

.inner-page .privacy-text {
    margin-bottom: 5px;
    font-size: 18px;
    color: #565656;
    line-height: 25px;
}

.inner-page .s {
    margin-bottom: 44px;
}

.inner-page .privacy-subtitle {
    font-size: 24px;
    margin-bottom: 24px;
    margin-top: 44px;
}

.inner-page .privacy-text-subtitle {
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.inner-page .privacy-list-item {
    list-style: disc;
    font-size: 18px;
    margin-left: 30px;
    color: #565656;
}

.inner-page .privacy-list {
    margin-bottom: 24px;
    padding: 0;
}

.inner-page .term-link {
    cursor: pointer;
    transition: 0.3s;
}

.inner-page .term-link:hover {
    color: #ee3123;
}

footer.inner-page {
    width: 100%;
    padding: 10px 0 10px 0;
    background: #fff8ee;
    border-top: 1px solid #eee;
    margin-top: 40px;
    font-size: 11px;
    color: #000000;
    text-align: center;
    font-size: 18px;
    /* display: flex; */
}

footer.inner-page .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-support {
    margin-top: 5px;
}

.footer-support a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-support a:hover {
    color: #ee3123;
}

footer.inner-page .footer-apps {
    display: inline-block;
}

footer.inner-page .app-badge {
    height: 36px;
    margin: 0 6px;
    vertical-align: middle;
}