* {
        box-sizing: border-box;
    }

    body {
        font-family: 'Tajawal', sans-serif;
        background-image: url('/build/img/banner/jeddah.jpg');
        background-size: cover;
        margin: 0;
        padding: 0;
        direction: rtl;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .login-container {
        display: flex;
        width: 900px;
        max-width: 100%;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
        overflow: hidden;
    }

    .tabs {
        background-color: #0a3622;
        padding: 30px 20px;
        min-width: 220px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .tab {
        color: white;
        padding: 12px 15px;
        margin-bottom: 10px;
        background-color: transparent;
        border: none;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        border-radius: 6px;
    }

    .tab:hover,
    .tab.active {
        background-color: #1d7a50;
    }

    .form-area {
        flex: 1;
        padding: 50px 40px;
        background-color: #fff;
    }

    form {
        display: none;
        flex-direction: column;
    }

    form.active {
        display: flex;
    }

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

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

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

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

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

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

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

    .alert-danger {
        color: #e60039;
        margin-top: 10px;
    }

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

        .tabs {
            flex-direction: row;
            justify-content: space-around;
            padding: 1rem;
            min-width: 100%;
        }

        .tab {
            font-size: 14px;
            flex: 1;
        }

        .form-area {
            padding: 30px 20px;
        }
    }