

/** {*/
    /* border: 1px solid red; */
/*    font-family: sans-serif;*/
/*}*/

/*main {*/
/*    background: #edf2ff;*/
/*    background-image: url(../images/img/BG-sidebar.png);*/
/*    background-size: 100%;*/
/*    background-position: bottom;*/
/*    background-attachment: fixed;*/
/*    background-repeat: no-repeat;*/
/*  }*/
  
/*  @media screen and (max-width: 500px) {*/
/*    main {*/
/*      background: #edf2ff;*/
/*      background-image: url(../images/img/BG-sidebar.png);*/
      /* position: fixed; */
/*      background-size: 100%;*/
/*      background-position: top;*/
/*      background-attachment: fixed;*/
/*      background-repeat: no-repeat;*/
/*    }*/
/*  }*/

/*main {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    min-height: 100vh;*/
/*    width: 100vw;*/
/*    overflow: hidden;*/
/*    color: orange;*/
    /* background-color: rgb(247, 247, 247); */
/*}*/

/*.mainBody img {*/
/*    width: 250px;*/
/*}*/

/*.auth-heading {*/
/*    text-align: center;*/
/*    font-size: 1.2rem;*/
/*    font-weight: 600;*/
/*}*/

/*.inputs {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    border-bottom: 1px solid white;*/
/*}*/

/*label {*/
/*    font-size: .9rem;*/
/*    font-weight: 600;*/
/*    color: rgb(183, 180, 180);*/
/*}*/

/*form {*/
/*    border-radius: 10px;*/
/*    background-color: rgb(1, 0, 18);*/
/*}*/


/*.customInput, .form-control {*/
/*    width: 100%;*/
/*    color: white;*/
/*    text-align: right;*/
/*    background: transparent !important;*/
/*    height: 30px;*/
/*    padding: 5px 0 10px 0;*/
/*    font-weight: 700 !important;*/
/*    letter-spacing: -0.5px;*/
/*    font-size: 13px !important;*/
/*    border: none !important;*/
/*    resize: none;*/
/*    appearance: none !important;*/
/*    outline: none !important;*/
/*    -webkit-appearance: none !important;*/
/*    transition: 0.3s all ease-in-out;*/
/*}*/

/*.formInputs {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*    padding: 20px;*/
/*    align-items: stretch;*/
/*}*/

/*.login .las {*/
/*    color: blue;*/
/*    margin-top: -15px;*/
/*    font-size: 20px;*/
/*}*/
/*.la-eye{*/
/*    color: blue;*/
/*    margin-top:2px;*/
    
/*}*/

/*.genders label {*/
/*    font-weight: 600;*/
/*}*/

/*.login {*/
/*    color: white;*/
/*    margin-top: 20px;*/
/*    background:none;*/
/*    border: none;*/
/*}*/

/*.links {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 15px;*/
/*    margin-top: 30px;*/
/*}*/

/*#forgotPassword {*/
/*    text-decoration: none;*/
/*    color: rgb(183, 180, 180);*/
/*}*/

/*#backToLogin{*/
/*    color: orange;*/
/*    margin: 15px 0 30px 0;*/
/*}*/



 :root {
            --brand-gradient: linear-gradient(90deg, #23A6D5, #A8CF45);
            --brand-green: #A8CF45;
            --text-main: #000000;
            --text-muted: #A0A0A0;
            --border-color: #E5E7EB;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #FFFFFF;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 50px;
        }

        /* --- LOGO SECTION --- */
        .logo-wrapper {
            margin-top: 40px;
            margin-bottom: 40px;
            text-align: center;
        }

        #mb-logo {
            width: 140px; /* Adjust size to match your asset */
            height: auto;
            display: block;
        }

        .page-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 40px;
        }

        /* --- FORM LAYOUT --- */
        .form-container {
            width: 90%;
            max-width: 450px;
        }

        .input-group {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            margin-bottom: 10px;
        }

        .input-label {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            white-space: nowrap;
        }

        .input-field {
            width: 60%;
            border: none;
            outline: none;
            text-align: right;
            font-size: 15px;
            background: transparent;
        }

        .input-field::placeholder {
            color: var(--text-muted);
        }

        /* --- GENDER SECTION --- */
        .gender-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gender-option {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 15px;
            color: var(--text-main);
        }

        /* --- TERMS SECTION --- */
        .terms-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 30px;
            margin-bottom: 30px;
            font-size: 13px;
            line-height: 1.4;
        }

        .custom-checkbox {
            width: 20px;
            height: 20px;
            background-color: var(--brand-green);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .custom-checkbox::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .terms-text b { color: #000; }
        .terms-link { color: var(--brand-green); text-decoration: underline; }

        /* --- ACTION BUTTON --- */
        .register-btn {
            width: 100%;
            height: 55px;
            border: none;
            border-radius: 30px;
            background: var(--brand-gradient);
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(35, 166, 213, 0.2);
        }

        @media (min-width: 1024px) {
            body { background-color: #f4f7f6; padding-top: 50px; }
            .form-container { 
                background: white; 
                padding: 40px; 
                border-radius: 15px; 
                box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
            }
        }
  .back-to-login {
    margin-top: 25px;
    text-align: center;
    width: 100%;
}

.back-to-login a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
}
  
   