.auth {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.auth__card {
    max-width: 460px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 36px 80px 0px rgba(204, 204, 204, 0.2);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.auth__title {
    margin-bottom: 10px;
}

.auth__subtitle {
    color: #8A8A8A;
    margin-bottom: 30px;
}

.auth__form>*:not(:first-child) {
    margin-top: 20px;
}

.auth__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.auth__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.auth__remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
}

.auth__forgot {
    color: #3371B8;
    transition: opacity 0.3s;
}

.auth__forgot:hover {
    opacity: 0.8;
}

.auth__register {
    margin-top: 20px;
    color: #8A8A8A;
}

.auth__link {
    color: var(--orange);
    font-weight: 500;
    transition: opacity 0.3s;
}

.auth__link:hover {
    opacity: 0.8;
}

.reg-form__form {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    background: #F4F4F4;
    border: none;
    outline: none;
    font-size: 16px;
}

.reg-form__wrapper {
    text-align: left;
}