@import "./reset.css";
@import "../fonts/fonts.css";

body {
    font-family: 'Play', sans-serif;
    background: #f6f7f8;
    padding: 25px;
    min-width: 100%;
    height: 100vh;
    overflow: hidden;
}

h1  {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px;
}

.id {
    background: #333;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50px;
    padding: 2px 7px;
    gap: 3px;

    align-items: center;
    display: flex;
    justify-content: space-between;
}

.id img {
    width: 28px;
    height: 28px;
}

.login-close {
    align-items: center;
    background: #e3e4e5;
    border-radius: 50%;
    display: flex;
    height: 45px;
    justify-content: center;
    padding: 10px;
    width: 45px;
}

.login-close svg {
    color: #686969;
    font-size: 26px;
}

.close-a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #686969;
}

.form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    background: #fff;
    padding: 48px;
    border-radius: 25px;
    width: 515px;
    z-index: 999;
}

.form-inline {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-input {
    background: #f6f7f8;
    height: 56px;
    padding: 6px 12px;
    border-radius: 10px;
    width: calc(100% - 61px);
}

.phone-input:active {
    border: 1px solid #888;
}

.phone-input:focus {
    border: 1px solid #333;
    background: #fff;
}

.btn {
    background: #ffdd2d;
    border-radius: 8px;
    height: 56px;
    width: 56px;
}

.form-footer {
    font-size: 12px;
    color: #888;
    padding: 16px 12px 0;
}

.bg-logo {
    bottom: -25%;
    opacity: .3;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 0;
}

.next {
    margin-top: 15px;
    display: block;
}

.text {
    text-align: center;
    margin-top: 10px;
}