.auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: 15px;
    height: fit-content;
}

.auth-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    height: fit-content;
}

.auth-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: 15px;
    height: auto;
    width: 100%;
    max-width: 750px;
}

.auth-card-item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.auth-card-item-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /*margin-top: 30px;*/
    margin-bottom: 30px;
}

.auth-card-item-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 10px;
}

.auth-card-item-input-element {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.auth-card-item-input-element-input {
    margin: 0;
    width: 70%;
    border-radius: 65px;
}

.auth-card-item-input-element-btn {
    border-radius: 100px;
    width: 120px;
    height: calc(40px * 1.33);
    background-color: var(--text-color);
    color: var(--background-color);
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.info-container-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.info-container-action-button {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-bottom: 20px;

}

.info-container-action-button-element {
    border-radius: 100px;
    width: 120px;
    height: calc(40px * 1.33);
    background-color: var(--text-color);
    color: var(--background-color);
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.info-container {
    display: flex;
    width: 90%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.info-container-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background-color: #bddaed;
    border: 2px solid #1b5983;
    border-radius: 15px;
    padding: 10px;
}

.auth-back {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    margin-top: 10px;
    margin-left: 50px;
}

.auth-back-arrow {
    display: flex;
    margin: 0;
    height: 26px;
    cursor: pointer;
}

.approve-phone-skip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /*gap: 10px;*/
    margin: 0;
    margin-top: 10px;
}

.approve-phone-skip-input {
    width: 20px;
    margin: 2px;
}

@media (max-width: 950px) {
    .auth-card {
        flex-direction: column;
    }
}