.auth-container {
    display: flex;
    flex: 1;
    gap: 100px;
    width: 100%;
    height: 712px;
    min-height: 712px;
    max-height: 712px;
}

h1 {
    color: var(--green-color);
}

.sign-via-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    color: #3C4043;
    font-size: 16px;
    font-weight: 500;
}

.auth-banner {
    background: var(--background-color);
    height: 712px;
    min-height: 712px;
    min-width: 636px;
    width: 636px;
    background-image: url(/resources/banners/banner_auth.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.input-container {
    width: 100%;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-inside-container {
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 400px;
}

.auth-button{
    color: var(--background-color);
    background: var(--green-color);
    border-radius: 50vh;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 20px;
    width: fit-content;
    cursor: pointer;
}

.input-container img {
    height: 24px;
    width: 24px;
}

#vk, #yandex {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    cursor: pointer;
}

#vk:hover, #yandex:hover {
    background: var(--salad-color);
    border: 1px solid var(--salad-color);
    cursor: pointer;
}

.leg-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 24px);
    gap: 12px;
    padding: 12px;
    height: 24px;
    border: 1px solid #BDC1C6;
    border-radius: 16px;
    transition: all 0.5s;
    background: var(--grey-color);
}

.leg-input-container input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: var(--primary-text-color);
    background: var(--grey-color);
    background: transparent;
    font-weight: 500;
    border: none;
    outline: none;
}

.leg-input-container input::placeholder { /* Most modern browsers support this now. */
    color: var(--secondarty-text-color);
}
