.auth__row
{
    display: flex;
    justify-content: center;
    gap: 64px;
    margin: 64px 0;
}

.auth__row-col
{
    flex-basis: 50%;
}

.auth__card
{
    padding: 32px;
    border-radius: 16px;
    background: #f8f8f8;
}

.auth__title
{
    text-align: center;
    margin-bottom: 16px;
}

.auth__input
{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.auth__input label span
{
    color: red;
}

.auth__input input[type="text"],
.auth__input input[type="email"],
.auth__input input[type="password"]
{
    height: 50px;
    width: 100%;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    color: #494949;
    padding-left: 20px;
}

.auth__link
{
    position: relative;
    color: #111;
}

.auth__link:after
{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e53637;
    content: "";
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.auth__link:hover:after
{
    transform: scale(1);
}

.auth__btn
{
    background: transparent;
    padding: 4px 16px;
    border: 1px solid #111;
    color: #111;
    outline: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;

    transition: background .3s, color .3s;
}

.auth__btn:hover
{
    background: #111;
    color: #fff;
}

.auth__link-wrapper
{
    margin-top: 16px;
}

.auth__input.auth__input--checkbox label {
    font-size: 16px;
    line-height: 21px;
    color: #0d0d0d;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    display: block;
}

.auth__input.auth__input--checkbox label input {
    position: absolute;
    visibility: hidden;
}

.auth__input.auth__input--checkbox label input:checked~.checkmark {
    border-color: #e53637;
}

.auth__input.auth__input--checkbox label input:checked~.checkmark:after {
    opacity: 1;
}

.auth__input.auth__input--checkbox label .checkmark {
    position: absolute;
    left: 0;
    top: 3px;
    height: 14px;
    width: 14px;
    border: 1.5px solid #d7d7d7;
    content: "";
    border-radius: 2px;
}

.auth__input.auth__input--checkbox label .checkmark:after {
    position: absolute;
    left: 1px;
    top: -3px;
    width: 14px;
    height: 7px;
    border: solid #e53637;
    border-width: 1.5px 1.5px 0px 0px;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
    content: "";
    opacity: 0;
}

@media only screen and (max-width: 991px) {
    .auth__row
    {
        flex-direction: column;
    }
}