#app__form {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

input,
button {
    border: none !important;
}

.v-input {
    width: 100%;
}

.title-form {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form__btn {
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
    background-color: #e9e03d;
    border-radius: 28px;
}

.v-snack__wrapper {
    top: 10%;
    position: absolute;
    right: 5%;
    background-color: #dbcc17 !important;
}

.form-registration__checkbox label {
    margin-bottom: 0;
}

.v-application .error--text {
    color: #de580a !important;
    caret-color: #ff5252 !important;
}

.lds-ellipsis {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.lds-ellipsis .active {
    display: inline-block;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #555;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% { 
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
    
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.reg-app-form {
    padding: 35px 25px;
}

.reg-title {
    margin-bottom: 50px !important;
}