.auth-form {
    max-width: 583px;
    width: 100%;
    margin: 100px auto;
}
.auth-form-title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-form-title span {
    font-size: 50px;
    font-weight: 650
}
.auth-form-form {
    width: 100%;
    margin-top: 32px;
}
.auth-form-form-group {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px;
}
.auth-form-form-group input {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    border: 1px solid #DAD9D9;
    padding: 0 12px;
    font-size: 16px;
    color: #999999;
    outline: none;
}
.auth-form-form-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
}
.auth-form-form-button-auth {
    width: 100%;
    height: 52px;
    background: #0042BE !important;
    border: 1px solid #0042BE;
    border-radius: 10px;
    font-size: 16px;
    color: #FFF;
    font-weight: 650;
}
.auth-form-form-button-reg {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0042BE;
    color: #0042BE;
    border-radius: 10px;
    font-size: 16px;
}