input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: transparent !important;
}



.auth__main {
    width: 100%;
    display: flex;
    justify-content: center;
}
.auth__wrapper {
    max-width: 1440px;
    width: 100%;
    padding: 80px 100px;
    text-align: center;
}
.auth__content {
    position: relative;
    padding: 0 24%;
}



.auth__back-button {
    margin-top: -6px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    color: #320064;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.auth__back-button span {
    margin-left: 20px;
    margin-top: 5px;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1.1px;
}
.auth__back-button:hover {
    color: #7716d8;
}



.auth__title {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--Dark-purple, #320064);
    font-family: "Random Grotesque Standard Bold";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


.auth__form-group {
    margin: 60px 0 20px 0;
    padding: 0 17px 0 17px;
    text-align: left;
}


.auth__form-label {
    color: var(--Dark-purple, #320064);
    font-family: Montserrat;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
}


.auth__input-wrapper {
    margin: 15px 0 23px 0;
    position: relative;
}
.auth__input-wrapper input {
    width: 100%;
    padding: 15px;
    background-color: transparent !important;
    border: 2px solid #f7d51d;
    border-radius: 26px;
    box-sizing: border-box;
    margin-bottom: 10px;

    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}
.auth__input-wrapper input:focus {
    border-color: #C896FF;
    outline: none;
}
.auth__input-wrapper input::placeholder {
    color: rgba(20, 0, 41, 0.50);
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}


.auth__toggle-password {
    position: absolute;
    top: 45%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}



.auth__form__help-button {
    text-align: right;
    margin: -16px 0 38px 0;
    color: #d3a4ff;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
}



.auth__btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1.125rem;
    cursor: pointer;
    margin-bottom: 10px;
}

.auth__main-btn {
    background-color: #320064;
    color: #fff;
}
.auth__main-btn:hover {
    background-color: #4a1283;
}


.auth__alt-btn {
    background-color: transparent;
    color: #d3a4ff;
}
.auth__alt-btn a {
    color: inherit;
    text-decoration: none;
}
.auth__alt-btn a:hover {
    color: #7e27db;
}

.unvisible{
    display: none;
}