* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Main container */
.mobile-container {
    width: 100%;
    max-width: 1200px;
    min-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hide status bar */
.status-bar {
    display: none;
}

/* Header */
.header {
    padding: 25px 40px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    color: #2e7d32;
    font-size: 30px;
    font-weight: 700;
}

.tagline {
    color: #777777;
    font-size: 14px;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 40px;
}

/* Left image */
.illustration {
    flex: 1;
}

.illustration img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

/* Login form container */
.login-container {
    flex: 1;
    max-width: 480px;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: none;
    border: none;
}

/* Title */
.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222222;
    text-align: center;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Inputs */
.phone-input,
.password-input {
    width: 100%;
    padding: 20px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 16px;
    background: #f9fafb;
    min-height: 58px;
    transition: 0.3s ease;
}

.phone-input:focus,
.password-input:focus {
    outline: none;
    border-color: #4CAF50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.08);
}

/* Button */
.login-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #e85a24;
}

/* Links */
.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.forgot-link,
.register-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Bottom nav */
.bottom-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 18px;
    border-top: 1px solid #eeeeee;
    background: #ffffff;
    flex-wrap: wrap;
}

.nav-item {
    text-decoration: none;
    color: #666666;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.nav-item.active {
    color: #ff6b35;
    background: #fff3ed;
}

.nav-item i {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Tablet */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        padding: 25px;
    }

    .illustration img {
        max-width: 100%;
    }

    .login-container {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    body {
        padding: 10px;
        background: #f8fafc;
    }

    .mobile-container {
        border-radius: 16px;
        box-shadow: none;
        border: none;
    }

    .header {
        padding: 18px;
        text-align: center;
    }

    .main-content {
        padding: 18px;
        gap: 18px;
    }

    .login-container {
        padding: 20px;
        box-shadow: none;
        border: none;
        border-radius: 16px;
    }

    .login-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .phone-input,
    .password-input {
        padding: 18px 16px;
        min-height: 56px;
        font-size: 15px;
    }

    .login-btn {
        padding: 18px;
        font-size: 16px;
    }

    .bottom-nav {
        gap: 12px;
        padding: 14px;
    }

    .nav-item {
        font-size: 12px;
    }
}