/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

/* Page Background */
.main-wrapper {
    height: 100vh;
    background: linear-gradient(#000000, #0d0d0d);
}

/* Signup Wrapper */
.signup-wrapper {
    max-width: 1300px;
}

/* LEFT IMAGE */
.left-img {
    width: 70%;
}

/* Form Card */
.form-card {
    width: 90%;
    max-width: 390px;
    background: #111;
    padding: 32px;
    border-radius: 25px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.60);
    color: #fff;
}

/* Inputs */
label {
    font-size: 14px;
    opacity: 0.9;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    margin: 6px 0 14px;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #000;
    outline: none;
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 45px;
}

.password-wrapper svg.eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Rules */
.rules p {
    font-size: 13px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rule-item label {
    font-size: 12px;
    opacity: 0.8;
}

/* Checkbox area */
.checkbox label {
    font-size: 12px;
}

/* Submit Button */
.btn-primary.pro {
    padding: 13px;
    border-radius: 10px;
    background:
        linear-gradient(0deg, #0147FF, #0147FF),
        radial-gradient(63.11% 63.11% at 31.97% 19.67%,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0) 70%);
    background-blend-mode: overlay;
    transition: transform 0.2s ease, opacity 0.3s ease;
    border: none;
}

.btn-primary.pro:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
/* SIMPLE CHECKBOX STYLE */
.rule-item input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #111;
    cursor: default;
    position: relative;
}

.rule-item input[type="checkbox"]:checked {
    background: #28c76f;
    /* green tick background */
    border-color: #28c76f;
}

.rule-item input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: -4px;
    left: 2px;
    font-size: 14px;
    color: #fff;
}


/* Responsive */
@media (max-width: 900px) {
    .left-img {
        display: none;
    }
}