#coinpoker-registration {
    /*background-color: #0D0E12;*/
    /*padding: 86px 50px 50px 50px;*/
    min-height: 270px;
}

#coinpoker-registration .form-group {
    margin-bottom: 16px;
    width: 100%;
    padding: 0px 8px;
}
#coinpoker-registration .button-wrapper {
    padding: 0 8px;
}

#coinpoker-registration label {
    display: block;
    margin-bottom: 7px;
    color: #9DA4C6;    
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}
#coinpoker-registration .button-wrapper.pb-36 {
    padding-bottom: 36px;
}

#coinpoker-registration input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #35394A;
    background: #1A1722;    
    padding: 5px 14px;    
    color: var(--White, #FFF);    
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;    
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease;
}

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

#coinpoker-registration input:focus {
    background-color:#22242E;
    /* color: black; */

}

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

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

@media only screen and (max-width: 599px) {
    #coinpoker-registration {
        padding: 0;
        width: calc(100vw - 40px);
    }
    #coinpoker-registration input {
        width: 100%;
        max-width: 376px;
    }
    #coinpoker-registration .text-address {
        max-width: 376px;        
    }
    #coinpoker-registration .conditional-fields.responsiveSegment  {
        flex-direction: column;
    }

    #coinpoker-registration .form-group{
        padding:0;
    }
}

#coinpoker-registration .text-conditions {
    color: var(--Generic-White, var(--White, #FFF));
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}
#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: white;
    border: none;
    padding: 3px 20px;
    cursor: pointer;
    color: var(--White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 200% */
    width: 100%;
}

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

#coinpoker-registration .error-message {
    color: red;
    margin-top: 10px;
    display: none;
}

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

#coinpoker-registration .btn-gradient {    
    border-radius: 9px;
    border: 3px solid #C0180C;
    background: #C0180C;
    box-shadow: 0px 0px 10px #C0180C;
}
#coinpoker-registration .btn-gradient.mt-2 {
    margin-top: 8px;
}

#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: 34px;
    margin-bottom: 24px;
    cursor: pointer;    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
#coinpoker-registration .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
  /* Create a custom checkbox */
#coinpoker-registration .checkmark-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #35394A;
}
  
  /* On mouse-over, add a grey background color */
#coinpoker-registration .container:hover input ~ .checkmark-custom {
    background-color: transparent;
}
  
  /* When the checkbox is checked, add a blue background */
#coinpoker-registration .check-container input:checked ~ .checkmark-custom {
      background-color: transparent;
      border-radius: 4px;
      border: 1px solid #12B76A;
}
  
  /* Create the checkmark/indicator (hidden when not checked) */
#coinpoker-registration .checkmark-custom:after {
    content: "";
    position: absolute;
    display: none;
}
  
  /* Show the checkmark when checked */
#coinpoker-registration .check-container input:checked ~ .checkmark-custom:after {
    display: block;
}
  
  /* Style the checkmark/indicator */
#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);
  }

/* Style for the loader */
#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; /* Hidden by default */
    margin: 0 auto;
}

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

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

#coinpoker-registration .conditional-fields {
    /* display: none; */
}

#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-family: Inter;
    font-size: 12px;
    font-style: normal;
    line-height: 160%;
    }


#coinpoker-registration span.tandc{
    color: var(--Generic-White, var(--White, #FFF));
    font-family: Inter;
    font-size: 12px;
    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 40px;
    }
}

/* Target iPhone 14 Pro Max and larger devices */
@media only screen and (min-width: 430px) and (min-device-width: 430px) and (-webkit-device-pixel-ratio: 3) {
  /* Styles for iPhone 14 Pro Max and above */
      #coinpoker-registration .toggle-password{
            right:25px !important;
        }
    }