.game-form {
    width: 100% !important;
}
.myaccount .registration-unified-form {
    display: block;
}

.myaccount .login-card-panel {
    grid-template-columns: 1fr;
    gap: 0;
}

.registration-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4vh;
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

/* CUSTOM CHECKBOX */

.custom-checkbox-container {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--accent);
    line-height: 1.3;
    user-select: none;
    gap: 10px;
}

.custom-checkbox-container input {
    position: absolute ;
    opacity: 0.01 ;
    top: 0 ;
    left: 0 ;
    width: 16px ;
    height: 16px ;
    
    margin: 0 ;
    padding: 0 ;
    cursor: pointer;
    z-index: 2; 
}

.checkbox-checkmark {
    position: relative;
    flex-shrink: 0;
    height: 16px;
    width: 16px;
    background-color: rgba(20, 13, 7, 0.8);
    border: 1px solid rgba(232, 212, 175, 0.35);
    border-radius: 4px;
    transition: all 0.2s ease;
    z-index: 1;
}

.custom-checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--lighter);
    box-shadow: 0 0 6px rgba(248, 238, 215, 0.2);
}

.custom-checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: #2a1e12;
    border-color: #e8d4af;
}

.checkbox-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--lighter);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked ~ .checkbox-checkmark::after {
    display: block;
}

.checkbox-label-text {
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.custom-checkbox-container:hover .checkbox-label-text {
    color: var(--lighter);
}

.custom-checkbox-container{
    pointer-events: auto;
}

.login-form-inner.register-inner p{
    color: var(--accent);
    text-align: center;
}

.save-btn {
    width: 100%;
    max-width: 180px;
    margin-top: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.save-btn span{
    font-size: 0.9rem;
}

.btn-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    
    padding: 0 20px; 
    box-sizing: border-box;
}

/* RADIO BUTTONS */

.custom-radio-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1vh;
}

.custom-radio-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 2;
}

.custom-radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.radio-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%; 
    background-color: rgba(20, 13, 7, 0.8);
    border: 1px solid rgba(232, 212, 175, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

.radio-custom::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lighter); 
    box-shadow: 0 0 6px rgba(248, 238, 215, 0.8);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-radio-label:hover .radio-custom {
    border-color: var(--lighter);
    box-shadow: 0 0 6px rgba(248, 238, 215, 0.2);
}

.custom-radio-input:checked + .radio-custom {
    background-color: #2a1e12;
    border-color: #e8d4af;
}

.custom-radio-input:checked + .radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.custom-radio-input:focus-visible + .radio-custom {
    outline: 2px solid var(--lighter);
    outline-offset: 2px;
}

.radio-text {
    transition: color 0.2s ease;
    font-size: 0.9rem;
    line-height: 1;
    pointer-events: none;
    transition: color 0.2s ease;
    color: var(--accent);
}

.custom-radio-label:hover .radio-text {
    color: var(--lighter);
}

