.uc-registration {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    min-height: 100px;
    align-items: center;
}

.uc-registration-block {
    display: none;
}

.uc-registration-block.uc-registration-auth {
    display: block;
}

.uc-registration input {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.uc-them-dark {
    color: #fff;
}

.uc-registration-title {
    padding: 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.uc-des-center {
    text-align: center;
    font-size: 14px;
}

.uc-registration-input {
    padding: 10px 0;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.uc-registration-input input {
    background-color: white !important;
    max-height: 3em;
    border-radius: 4px !important;
}

.uc-registration-controll button {
    width: 100%;
    max-height: 4em;
}

.uc-registration-input label {
    color: #fff !important;
}

.uc-registration-controll {
    padding: 10px 0;
}

.uc-registration-controll button,
.uc-registration-repeated-body button,
.uc-registration input[type=submit],
.uc-registration input[type=button] {
    position: relative;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.uc-them-dark .uc-registration-controll button,
.uc-them-dark .uc-registration-repeated-body button,
.uc-them-dark .uc-registration input[type=submit],
.uc-them-dark .uc-registration input[type=button] {
    background-color: #fff;
    border: none;
}

.uc-registration-success-body,
.uc-registration-repeated-body {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.uc-registration-success-title,
.uc-registration-repeated-title {
    font-size: 36px;
}

.uc-registration-success-subtitle,
.uc-registration-repeated-subtitle {
    font-size: 24px;
}

.uc-registration-success-countdown {
    font-size: 24px;
    color: white;
    text-align: center;
}

.uc-registration-wrapper {
    margin: 0 auto;
    padding: 40px;
    max-width: 40%;
    border-radius: 10px;
}


@media(max-width: 768px) {

    .uc-registration-wrapper {
        margin: 3rem auto auto;
        max-width: 100%;
    }


    .uc-registration-controll button,
    .uc-registration-repeated-body button,
    .uc-registration input[type=submit],
    .uc-registration input[type=button] {
        font-size: 1.35rem;
        padding: 20px;
    }
}