@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  background: #F2F3F5;
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

.main {
    /* margin: 40px 0; */
    display: flex;
    align-items: center;
    height: 100vh;
}

.content-left {
    position: relative;
    height: 100%;
}
.content-left .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-left .inside-image {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 64px;
    top: 0;
    height: 100%;
    align-items: start;
}
.content-left .inside-image .logo {
    width: 40%;
    margin-bottom: auto;
}
.content-left .inside-image .logo img {
    width: 100%;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 8px 24px;
}
.content-left .inside-image .meta {
    color: #ffffff;
}
.content-left .inside-image .meta .title {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    padding-bottom: 17px;
}
.content-left .inside-image .meta .desc {
    font-size: 20px;
    line-height: 160%;
}

.content-right {
    padding: 58px 45px;
}
.content-right h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    color: #373839;
    margin-bottom: 18px;
}
.content-right p {
    font-size: 16px;
    line-height: 160%;
    color: #010214;
}
.content-right form {
    margin-top: 28px;
}
.content-right .form-input,
.content-right .form-check,
.content-right .theme-btn,
.content-right .divider,
.content-right .answer-account {
    margin-bottom: 20px;
}
.content-right .form-input label {
    line-height: 160%;
    font-weight: 500;
    font-size: 20px;
    color: #010214;
    margin-bottom: 11px;
}
.content-right .form-input .form-control {
    border: unset;
    background-color: #F3F3F3;
    border-radius: 100px;
    padding: 14px 24px;
}
.content-right .form-check label {
    color: #010214;
}
.content-right .form-check label a {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.theme-btn {
    width: 100%;
    font-size: 14px;
    color: #373839;
    padding: 14px 32px;
    transition: all .5s ease-in-out;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #FCAF42;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}
.theme-btn::before {
    content: "";
    height: 300px;
    width: 100%;
    background: #02073D;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
.theme-btn:hover {
    color: #ffffff;
}
.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.content-right .divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #02073D;
  font-size: 16px;
  gap: 20px;
}
.content-right .divider::before,
.content-right .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #000;
}

.content-right .answer-account {
    font-size: 18px;
    color: #02073D;
    text-align: center;
}
.content-right .answer-account a {
    font-size: inherit;
    color: inherit;
    font-weight: 700;
    border: unset;
}
.content-right .answer-account a:hover {
    background-color: unset;
}

.content-right .forgot-password {
    text-align: right;
}
.content-right .forgot-password a {
    color: #02073D;
    text-decoration: none;
}