
    * {
        box-sizing: border-box;
    }

    body {
        font-family: 'Tajawal', sans-serif;
        background: #f5f5f5;
        margin: 0;
        padding: 0;
        direction: rtl;
    }

    .login-container {
        display: flex;
        flex-direction: row;
        min-height: 100vh;
        background-color: #fff;
    }

    .form-area {
        flex: 1;
        padding: 60px;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    form {
        width: 100%;
        max-width: 500px;
        background: #ffffff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .form-section {
        display: flex;
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #0a3622;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        width: 100%;
        background-color: #f9f9f9;
        transition: border-color 0.3s;
    }

    .form-group input:focus {
        border-color: #1d7a50;
        outline: none;
    }

    .terms-checkbox {
        margin-top: 15px;
        font-size: 14px;
    }

    .terms-checkbox a {
        color: #e60039;
        text-decoration: none;
    }

    .submit-button {
        background-color: #1d7a50;
        color: white;
        border: none;
        padding: 14px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 6px;
        margin-top: 25px;
        transition: background-color 0.3s;
    }

    .submit-button:hover {
        background-color: #145c3c;
    }

    .links {
        margin-top: 20px;
        font-size: 14px;
        text-align: center;
    }

    .links a {
        color: #0a3622;
        text-decoration: underline;
    }

    .field-error {
        color: #e60039;
        font-size: 13px;
        margin-top: 6px;
    }

    #section2 {
        display: none;
    }

    .required-field::after {
        content: "*";
        color: #e60039;

    }


    @media (max-width: 768px) {
        .login-container {
            flex-direction: column;
        }

        .tabs {
            flex-direction: row;
            justify-content: flex-end;
            padding: 1rem;
        }

        .form-area {
            padding: 20px;
        }

        form {
            padding: 30px 20px;
        }
    }