.auth-form {
    display: flex;
    flex-direction: column;
    margin: auto;
    /* max-width: 790px; */
    max-width: 100%;
    width: fit-content;
    background: #fff;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 8px 16px 0 #3E101014;
}
.auth-form.-thin{
    width: 479px;
}
.auth-form.-medium{
    width: 670px;
}

.auth-form .heading{
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;

    text-align: center;
}
.auth-form .heading.-border::after{
    bottom: -11.5px;
}
.auth-form .heading.-border{
    margin-bottom: 43px;
}

.auth-form__help-text{
    margin-bottom: 32px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;

    vertical-align: middle;

    color: #888888;
}
.auth-form__help-text span{
    color: #FF2424;
}

.auth-form__back{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #AAAAAA;
    margin-bottom: 12px;
    text-decoration: none;
}
.auth-form__back .svg-icon{
    width: 16px;
    height:16px;
}
.auth-form__back .svg-icon{
    width: 6px;
}

.auth-form.--big{
    width:770px;
}

.auth-or {
    /* border-top: 1px solid #ccc; */
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.auth-or__inner {
    /* position: absolute; */
    /* top: -10px; */
    /* left: 0; */
    /* right: 0; */
}


.auth-or__text {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 0 25px;
    font-size: 14px;
    color: #888888;
}
.auth-or__text:before,
.auth-or__text:after{
    content: '';
    display: block;
    width: 77px;
    height:1px;
    background: #E0E0E0;
}

.auth-btn-group {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, minmax(48px, 1fr));
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    /* grid-gap: 20px; */
    /* display: flex; */
    /* justify-items: center; */
    gap: 16px;
}

.auth-btn {
    width: 100%;
    min-width: min-content;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height:48px;
    /*border-radius: 5px;*/
    font-size: 16px;
    /* border: 1px solid #cccccc; */
    border: none;
    outline: none;
    border-radius: 6px;
    text-decoration: none;
    /* padding: 0 10px; */
    box-sizing: border-box;

    background: #F5F5F5;
    cursor: pointer;
    /* color: #333333;; */
    transition: 0.3s;
}

.auth-btn:hover{
    color: #FF2424;
}

.auth-btn img {
    height: 20px;
    margin-right: 10px;
}

.main{
    background: #F5F5F5;
}

.main *{
    box-sizing: border-box;
}

@media (max-width: 980px){
    .auth-form.--big{
        width:unset;
    }
}

@media (max-width: 790px) {
    .auth-form {
        min-width: 80%;
        padding: 16px;
    }
    .auth-btn-group {
        /* grid-template-columns: 1fr; */
    }
    .auth-form .heading{
        font-size: 22px;
    }
    .auth-form .heading.-border::after{
        bottom: -8.5px;
    }
    .auth-form .heading.-border{
        margin-bottom: 35px;
    }
}

@media (max-width: 790px) {}