body {
            font-family: 'Segoe UI', sans-serif;
            background: #fff;
        }

        .register-wrapper {
            min-height: calc(100vh - 120px);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .register-box {
            max-width: 900px;
            width: 100%;
            text-align: center;
        }

        .register-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            color: #0b0b6e;
            margin-bottom: 20px;
        }

        .divider {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            margin: 0 auto;
            padding: 14px 16px;
            border: none;
            background: #f5f7f9;
            border-radius: 6px;
            font-size: 15px;
        }

        textarea {
            resize: none;
            height: 90px;
        }

        .terms {
            margin-top: 15px;
        }

        .register-btn {
            background: #42c0ff;
            color: #fff;
            border: none;
            padding: 14px 45px;
            border-radius: 30px;
            font-size: 17px;
            display: block;
            margin: 40px auto 0;
        }

        .login-text {
            text-align: center;
            margin-top: 25px;
        }




   

/* MODAL */

 /* FORCE MODAL TO TOP */
.modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647 !important; /* 🔥 MAX Z-INDEX */
}

.modal-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    width: 380px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-box h2 {
    color: green;
}

.login-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background: #020c46;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}
