.main-registretion {
    background-color: var(--color-block);
    width: 814px;
    max-width: 90%;
    height: auto;
    border-radius: 54px;
    border: 6px var(--color-backround) solid;
    text-align: center;
    margin: 60px auto;
    padding: 40px 20px;
}

.form-registretion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-registretion input,.form-registretion option,.form-registretion select {
    font-style: italic;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 25px;
    padding-left: 20px;
    color: gray;
    background-color: var(--color-backround);
    width: 100%;
    max-width: 597px;
    height: 76px;
    border: none;
    border-radius: 54px;
    box-shadow: var(--shadow);
}

.btn-reg {
    background-color: var(--color-backround);
    width: 337px;
    height: 68px;
    box-shadow: var(--shadow);
    border-radius: 32px;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.1s ease-out, background-color 0.1s ease-out;
}

.btn-reg:hover {
    background-color: #cfc4dd;
}

.btn-reg:active {
    transform: scale(0.95);
}