/* SLIDE AUTH [START] */
.slide-auth {
    background-image: url('../../images/phone.png');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 240px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slide-auth__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.slide-auth__field {
    position: relative;
}

.slide-auth__field label.error {
    color: rgba(232, 81, 70, 0.7);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    margin-top: 4px;
    position: absolute;
    top: 100%;
    left: 24px;
}

.slide-auth__input {
    background-color: #FFFFFF;
    border: 1px solid #C8C8C8;
    width: 100%;
    height: 64px;
    padding: 0px 24px;
    border-radius: 8px;
}

.slide-auth__input:hover,
.slide-auth__input:focus {
    border-color: #9D9D9D;
}

.slide-auth__input.error {
    border-color: rgba(232, 81, 70, 0.7);
}

.slide-auth__button {
    width: 100%;
    max-width: 100%;
}
/* SLIDE AUTH [END] */