/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

ul,
ol {
  list-style: none;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
a {
    text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verif-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.verif-box {
    background-color: #222;
    padding: 2rem;
    border-radius: 8px;
    max-width: 489px;
    width: 100%;
    height: 588px;
}

.verif-box h1 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
    color: #FBFBFC;
}

.verif-box label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #EEEEF6;
}

.verif-box input {
    width: 100%;
    padding: 5px 10px;
    color: #FBFBFC;
    
    background-color: transparent;
    border-radius: 4px;
}
.verif-box-email {
    border: 1px solid #EEEEF6;
}
.verif-box-confirm {
    border: 1px solid #EEEEF6;
}
.verif-box-password {
    border: 1px solid #EEEEF6;
}
.verif-box-password-confirm {
    border: 1px solid #EEEEF6;
}
.error {
    border-color: #FF1C45;
    outline: none;
}
.error-message {
    color: #FF1C45;
    padding-top: 5px;
    font-size: 14px;
    font-weight: 400;
}
.verif-box input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px rgb(44, 44, 44); /* цвет вашего фона */
    -webkit-text-fill-color: #FBFBFC; /* цвет текста */
}
.verif-btn {
    width: 100%;
    padding: 0.5rem;
    margin: 20px 0;
    background-color: #2684FC;
    border: none;
    border-radius: 5px;
    color: #FBFBFC;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all linear .2s;
}
.verif-btn:hover {
    opacity: .6;
}

.verif-box .divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #EEEEF6;
}

.verif-box .divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #EEEEF6;
}

.verif-box .divider:not(:empty)::before {
    margin-right: 20px;
}

.verif-box .divider:not(:empty)::after {
    margin-left: 20px;
}

.verif-box .divider span {
    display: inline-block;
    padding: 0 10px;
    font-size: 16px;
    color: #666;
}

.google-verif {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #FBFBFC;
    background: #363636;
    cursor: pointer;
}
.google-verif span {
    margin-left: 15px;
}
.verif-box p {
    font-size: 0.9rem;
}

.verif-box a {
    color: #1a73e8;
    text-decoration: none;
}
.verif-logo {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.verif-logo > p {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 500;
    /* transform: translateY(-4px); */
    color: #FBFBFC;
}
.verif-privacy-policy {
    color: #fbfbfccc;
    padding-top: 20px;
}
.verif-privacy-policy a {
    color: #fbfbfccc;
    text-decoration: underline;
}
#verification-form {
    margin: 20px 0 0;
}
#verification-code {
    margin: 0;
}
.account-access {
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    color: #fbfbfc;
}
.account-access a{
    color: #2684FC;
}
.verification-message {
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.verification-message a {
    color: #FBFBFC;
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-30%);
    cursor: pointer;
}
.password-toggle svg {
    width: 22px;
    height: 17px;
    fill: #808080;
}
.verif-box-password-confirm-label {
    padding-top: 15px;
}
.password-toggle.active svg.eye-open {
    display: block;
}
.password-toggle svg.eye-closed {
    display: block;
}
.password-toggle svg.eye-open {
    display: none;
}
.password-toggle.active svg.eye-closed {
    display: none;
}
#eye-icon-open {
    display: none;
}

