.body-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.reg-content {
    display: flex;
    flex-direction: row;
    width: 560px;
    height: 640px;
    background: transparent;
}

.reg-content .rigth {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.reg-content .rigth .head-content {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.reg-content .rigth .head-content p {
    letter-spacing: 1.5px;
    color: rgb(31, 156, 6);
    font-size: 22px;
    margin-bottom: 0;
    font-family: "Merriweather Sans", sans-serif !important;
}

.reg-content .rigth .head-content span {
    font-size: 15px;
    width: 100%;
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

#accept {
    padding: 20px;
}

#accept .head-content {
    margin-bottom: 10px;
}

.body-condition {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    height: 420px;
    overflow: auto;
}

.reg-content .rigth .inp-content {
    padding: 10px;
}

.reg-content .rigth .inp-content .inp {
    min-height: 80px;
}

.text-err {
    font-size: 12px;
    white-space: nowrap;
}

.btn-clear {
    background: transparent;
    color: rgb(31, 156, 6);
    font-size: 15px;
    border: none;
    margin: 5px;
}

.reg-content .rigth .inp-content .inp input {
    box-shadow: none;
    border: none;
    background: transparent;
    border-radius: 0;
    border-bottom: 2px solid #ccc;
    font-size: 15px;
    padding: 10px;
    padding-bottom: 2.5px;
    transition: all 0.3s ease-in-out;
}

.reg-content .rigth .inp-content .inp label {
    position: absolute;
    margin-top: -35px;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.reg-content .rigth .inp-content .inp input:focus {
    border-bottom: 2px solid rgba(251, 48, 48, 0.835);
}

.reg-content .rigth .inp-content .inp input:focus~label,
.reg-content .rigth .inp-content .inp input:valid~label {
    font-size: 12px;
    color: rgb(132, 132, 132);
    margin-top: -45px;
    margin-left: 5px;
}

.button-reg {
    width: 100%;
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-reg i {
    position: absolute;
    margin-left: calc(100px - 100%);
}

.button-reg:before {
    content: "";
    background: linear-gradient( 45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.button-reg:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.condi-text span {
    text-decoration: underline;
    color: #0d6efd;
    cursor: pointer;
}

.modal.show .modal-dialog {
    transform: inherit !important;
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transform: inherit !important;
    }
}

.show .modal-dialo {
    animation: show !important;
    animation-duration: 1s !important;
    transform: scale(1) !important;
}

@keyframes show {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.radio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.radio .form-check {
    margin-right: 10px;
}