/*
Theme Name: Leyiman
Author: Mamoru30
Version: 1.0
*/
* {
    margin: 0;
    border: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

*,
::after,
::before {
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
:root {
  --font-family: "Geologica", sans-serif;
}
.logout{
    position: absolute;
    z-index: 200;
    right: 25px;
    top: 10px;
    background: transparent;
    font-size: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.auth {
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    background: rgba(0, 0, 0, 0.73);
    display: flex;
    padding: 15px;
}
.auth__form-box {
	border-radius: 20px;
    max-width: 702px;
    width: 100%;
    background: #fff;
    margin: auto;
    overflow: hidden;
}
.auth__header {
	background: #f6f6f6;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 44px;
}
.auth__title {
	font-family: var(--font-family);
    font-weight: 300;
    font-size: 24px;
    color: #262626;
    background: #fff;
    border-radius: 600px;
    padding: 6px 14px;
}
.auth__desc {
	font-family: var(--font-family);
    font-weight: 200;
    font-size: 17px;

    /* line-height: 20px; */ 
    line-height: 1.17647;
    color: #262626;
}
.auth__body {
	padding: 28px 44px 0;
}
.auth__form {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.auth__cell {
	flex: 0 0 auto;
    width: calc(50% - 15px);
}
.auth__label {
	font-family: var(--font-family);
font-weight: 300;
font-size: 20px;
color: #262626;
margin-bottom: 6px;
}
.auth__input-wrap {
	position: relative;
}
.auth__input {
	border: 1px solid #262626;
    border-radius: 600px;
    width: 100%;
    height: 60px;
    padding-left: 20px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 20px;
}
.auth__input-toggle{
    position: absolute;
    cursor: pointer;
    font-size: 0;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    &:hover{
        opacity: 0.9;
    }
    &.is-active{
        opacity: 0.7;
    }
}
.form__submit {
	font-family: var(--font-family);
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 600px;
    width: 100%;
    height: 60px;
    background: #262626;
    &:hover{
        opacity: 0.8;
    }
}
.auth__footer {
	padding: 0 44px 30px;
    text-align: right;
}