/* Üye ol pop-up'ı için genel stil */
#register-popup-overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#register-popup {
    background-color: #353f49;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #register-popup {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

#register-form-container {
    padding: 10px;
}

.close-btn {
    position: absolute;
    top: 1px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    color: red;
}

#register-form-container .woocommerce-Button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#register-form-container .woocommerce-Button:hover {
    background-color: #0056b3;
}

/* 'u-column1 col-1' sınıfını gizlemek için */
#customer_login .u-column1 {
    display: none;
}
