:root {
    --bg: #ffffff;
    --fg: #0b0f19;
    --muted: #667085;
    --brand: #33d39e;
    --brand-weak: #e8fbf4;
    --line: #eef1f4;
    --input: #f7f8fa;
    --focus: #5dd5b9;
    --radius: 14px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Noto Sans", sans-serif;
    color: var(--fg);
    background: var(--bg)
}

.auth {
    min-height: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr
}

@media (max-width:1024px) {
    .auth {
        grid-template-columns: 1fr
    }

    .auth__left {
        order: 2
    }

    .auth__right {
        order: 1
    }
}

.auth__left {
    padding: 48px 6vw 32px;
    position: relative;
    overflow: hidden
}

.brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px
}

.brand img {
    height: 2.4rem;
    width: 6.15rem;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    max-width: 560px;
}

.hero__title {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: .2px;
    margin: 0 0 18px
}

.hero__text {
    color: black;
    margin: 0 0 10px
}

.badges{
    margin-top: 3rem;
}

.badges img {
    width: 220px;
    height: 60px;
}

.city {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: url(/wp-content/themes/theforest/images/bg_home_start@2x.jpg);
}

.auth__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #ffffff
}

.card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04)
}

.card__head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.card__title {
    font-size: 28px;
    font-weight: 800;
    margin: 4px 0 22px
}

.field {
    margin-bottom: 14px
}

.field__label {
    display: block;
    font-size: 14px;
    color: #475467;
    margin: 0 0 6px
}

.input {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--input);
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s
}

.input:focus {
    border-color: var(--focus);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(93, 213, 185, .18)
}

.requirements {
    margin: 10px 0 16px;
    padding-left: 18px;
    color: #475467;
    font-size: 13px
}

.requirements li {
    margin: 4px 0
}

.requirements__title {
    margin: 0 0 4px;
    color: #344054;
    font-weight: 600;
    font-size: 13px
}

.btn {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #053d2f;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--brand);
    color: white;
    filter: saturate(1.05) brightness(1.02)
}

.btn:active {
    background: var(--brand);
    color: white;
    transform: translateY(1px)
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 10px;
    font-size: 14px
}

.link {
    color: #098c6a;
    text-decoration: none
}

.link:hover {
    text-decoration: underline
}

.legal {
    margin: 12px 0;
    color: #475467;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.checkbox {
    transform: translateY(3px)
}

.divider {
    margin: 14px 0;
    height: 1px;
    background: var(--line)
}

.oauth {
    display: flex;
    gap: 12px;
    justify-content: center
}

.oauth__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer
}

.top-actions {
    position: absolute;
    right: 20px;
    top: 14px;
    display: flex;
    gap: 16px;
    align-items: center
}

.top-actions a{
    color: black;
}

.gsi-material-button {
    background: #fff;
    border: 1px solid #dadce0;
    height: 46px;
    border-radius: 12px;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    height: 40px;
    min-width: 240px;
    transition: background .2s, box-shadow .2s;
}
.gsi-material-button:hover {
  background: #f7f8f8;
  box-shadow: 0 1px 2px rgba(60,64,67,.3);
}
.gsi-material-button-content-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}
.gsi-material-button-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}
.gsi-material-button-contents {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3c4043;
}

.custom-control-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #33d39e;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.custom-control-input:checked {
  background-color: #33d39e;
}

.custom-control-input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}