#coinpoker-registration {
    min-height: 16.875rem;
}

#coinpoker-registration .form-group {
    margin-bottom: 1rem;
    width: 100%;
    padding: 0 0.5rem;
}

#coinpoker-registration .button-wrapper {
    padding: 0 0.5rem;
}

#coinpoker-registration label {
    display: block;
    margin-bottom: 0.438rem;
    color: #9DA4C6;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-align: left;
}

#coinpoker-registration .button-wrapper.pb-36 {
    padding-bottom: 2.25rem;
}

#coinpoker-registration input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #35394A;
    background: #1A1722;
    padding: 0.313rem 0.875rem;
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease;
}

#coinpoker-registration input.error {
    border-color: #ff0000;
    background-color: #312626;
}

#coinpoker-registration input:focus {
    background-color: #22242E;
}

#coinpoker-registration input.filled {
    background-color: #ffa500;
}

#coinpoker-registration .text-address {
    max-width: calc(100% - 0.938rem);
}

@media only screen and (max-width: 599px) {
    #coinpoker-registration {
        padding: 0;
        width: calc(100vw - 2.5rem);
    }

    #coinpoker-registration .form-group {
        width: 100%;
        max-width: 23.5rem;
        padding: 0;
        margin: 0 auto;
    }

    #coinpoker-registration .text-address {
        max-width: 23.5rem;
    }

    #coinpoker-registration .conditional-fields.responsiveSegment {
        flex-direction: column;
    }
}

#coinpoker-registration .text-conditions {
    color: #FFF;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

#coinpoker-registration .text-conditions a {
    color: #fff;
}

#coinpoker-registration input[type="checkbox"] {
    width: 20px;
}

#coinpoker-registration input:-webkit-autofill {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #1A1722;
}

#coinpoker-registration .text-center {
    text-align: center;
}

#coinpoker-registration .button--submit {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 3px 20px;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2rem;
    width: 100%;
}

#coinpoker-registration .button--submit:focus {
    outline: 0;
}

#coinpoker-registration .error-message {
    color: #ff0000;
    margin-top: 0.625rem;
    display: none;
}

#coinpoker-registration .error-message.API-error {
    margin-top: unset;
    margin-left: 0.625rem;
}

#coinpoker-registration .btn-gradient {
    border-radius: 0.563rem;
    border: 3px solid #C0180C;
    background: #C0180C;
    box-shadow: 0 0 10px #C0180C;
}

#coinpoker-registration .btn-gradient.mt-2 {
    margin-top: 0.5rem;
}

#coinpoker-registration .btn-gradient:disabled {
    border: 1px solid #35394A;
    background: #1C1E27;
    box-shadow: none;
    color: #424656;
}

@media only screen and (min-width: 600px) {
    #coinpoker-registration .d-sm-flex {
        display: flex;
    }
}

#coinpoker-registration .check-container {
    display: block;
    position: relative;
    padding-left: 2.125rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#coinpoker-registration .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#coinpoker-registration .checkmark-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #35394A;
}

#coinpoker-registration .container:hover input ~ .checkmark-custom {
    background-color: transparent;
}

#coinpoker-registration .check-container input:checked ~ .checkmark-custom {
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #12B76A;
}

#coinpoker-registration .checkmark-custom:after {
    content: "";
    position: absolute;
    display: none;
}

#coinpoker-registration .check-container input:checked ~ .checkmark-custom:after {
    display: block;
}

#coinpoker-registration .check-container .checkmark-custom:after {
    left: 7px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid #12B76A;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#coinpoker-registration .loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #C0180C;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#coinpoker-registration .loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#coinpoker-registration .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#coinpoker-registration .toggle-password i {
    color: #9DA4C6;
}

#coinpoker-registration p {
    font-size: 0.75rem;
    font-style: normal;
    line-height: 160%;
}

#coinpoker-registration span.tandc {
    color: #FFF;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    text-decoration-line: underline;
}

@media (min-width: 992px) {
    .register-page .register-form-wrapper.spacingAdjust {
        margin: 0 auto 2.5rem;
    }
}

@media only screen and (min-width: 430px) and (min-device-width: 430px) and (-webkit-device-pixel-ratio: 3) {
    #coinpoker-registration .toggle-password {
        right: 1.563rem !important;
    }
}
