#coinpoker-registration {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    padding: 20px;
}

.scf-heading {
    text-align: center;
    font-size: 18px;
    margin-bottom: 56px;
}

.scf-heading span {
    display: block;
    font-weight: bold;
    background: linear-gradient(to right, #ff416c, #ff4b2b, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;

}

.scf-subheading {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.form-wrapper {
    background: linear-gradient(180deg, #29112F -12.53%, #0a0a0e 28.79%);
    padding: 20px;

}

.scf-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    margin-bottom: 16px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    background: #1A1722;
    color: white;
    border: 1px solid #35394A;
    border-radius: 8px;
}

input:disabled {
    background: #2c2c2c;
}

.error-message {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
}

.checkbox input {
    margin-top: 3px;
    margin-right: 8px;
    width: 25px;
    height: 20px;
    border: 1px solid #35394A;
    border-radius: 5px;
    display: block;
}

.tandc a {
    color: #00f0ff;
    font-weight: bold;
    text-decoration: underline;
}

.button-wrapper {
    margin-top: 10px;
}

.button-wrapper button {
    width: 100%;
    background-color: #2A2F3F;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer !important;
}

.button-wrapper button:disabled {
    cursor: not-allowed;
    border: 1px solid #35394A;
    background: #1C1E27;
    box-shadow: none;
    color: #424656;
}

.form-wrapper label {
    color: #9DA4C6;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    margin-bottom: 7px;
}

.check-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.check-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin-top: 5px;
}

.checkmark-custom {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    display: block;
}

.check-container input:checked + .checkmark-custom::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-container.text-conditions label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-input {
    position: relative;
    top: 5px;
}

button#completeRegistrationButton {
    background: #C0180C;
    box-shadow: 0 0 10px #C0180C;
    width: 100%;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer !important;
    font-weight: 600;
}

button#completeRegistrationButton:disabled {
    border: 1px solid #35394A;
    background: #1C1E27;
    box-shadow: none;
    color: #424656;
    font-weight: 600;
}


@media (max-width: 768px) {
    .scf-heading span {
        line-height: 1;
    }

    .scf-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 0;
    }

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