﻿.Input {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    position: relative
}

.Input label {
    position: absolute;
    left: 8px;
    background: #fff;
    transform: translateY(-50%);
    top: 0px;
    padding: 0px 4px;
    font-size: 14px;
    transition: .25s
}

.Input input {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    width: 100%
}

.Input.focus input {
    border-color: #007c8b
}

.Input.error label {
    color: #f33
}

.Input.error input {
    border-color: #f33
}

.Input ._err_msg {
    padding: 16px;
    background: #f33
}

.Input ._err_msg p {
    font-size: 14px;
    text-align: center;
    color: #fff
}

.Input._select {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    width: fit-content;
    padding: var(--padding);
    --padding: 14px
}

.Input._select::after {
    content: "";
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    font-size: 12px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: var(--padding)
}

.Input._select::after.show {
    content: ""
}

.Input._select ._value {
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    padding-right: 24px
}

.Input._select input {
    cursor: pointer
}

.Input._select.show ._options {
    transform: scaleY(1);
    opacity: 1
}

.Input._select ._options {
    z-index: 9;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .1);
    transform-origin: top;
    transform: scaleY(0);
    transition: .25s
}

.Input._select ._options ._option {
    padding: var(--padding);
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 14px;
    font-weight: 500;
    transition: .25s
}

.Input._select ._options ._option:hover {
    background: rgba(0, 0, 0, .035)
}

.Input._select ._options ._option:last-child {
    border: none
}

html,
body {
    width: 100%;
    height: 100%;
    background: #fff
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative
}

.container .form {
    z-index: 2;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 48px;
    align-items: center;
    justify-content: center
}

.container .form ._box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 400px;
    align-items: center;
    justify-content: center
}

.container .form ._box ._title {
    display: flex;
    display: none;
    flex-direction: column;
    gap: 4px;
    text-align: center
}

.container .form ._box ._title h1 {
    font-size: 24px;
    color: #565656
}

.container .form ._box ._title p {
    font-size: 16px;
    color: rgba(0, 0, 0, .75)
}

.container .form ._logo {
    height: 64px;
    width: 64px;
    margin: 32px 0px
}

.container .form ._logo img {
    object-fit: contain
}

.container .form ._inputs,
.container .form ._search {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%
}

.container .form input[type=submit] {
    background: #007c8b;
    color: #fff;
    border: none;
    padding: 16px;
    width: 100%;
    font-weight: 600;
    cursor: pointer
}

.container .form .alternativeLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.container .form .alternativeLinks span {
    text-align: center
}

.container .form .alternativeLinks span a {
    color: #007c8b;
    font-weight: 600
}

.container>img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover
}