:root {
    --primary-orange: #ff8c00;
    --primary-green: #26a69a;
    --secondary-green: #2E7D32;
    --light-green: #4CAF50;
    --white: #FFFFFF;
    --off-white: #f1f8f6;
    --dark-text: #2d3436;
    --light-text: #636e72;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Decorations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-page {
    background: linear-gradient(-45deg, #e0f2f1, #b2dfdb, #80cbc4, #4db6ac);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: #ffecb3;
    top: -100px;
    left: -100px;
    animation: float 20s infinite ease-in-out;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: #b2ebf2;
    bottom: -150px;
    right: -150px;
    animation: float 25s infinite ease-in-out reverse;
}

/* Components */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-orange), #FFA500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, var(--secondary-green), var(--light-green));
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Auth Layout */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 420px;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    border-left: 4px solid #ef5350;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.4s ease;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header img {
    width: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.auth-header h1 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #546e7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: #f1f3f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    color: #2c3e50;
}

.form-control:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.15);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #b0bec5;
}

/* Modern Button Style */
.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    font-size: 16px;
    padding: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px -10px rgba(255, 107, 107, 0.5);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(255, 107, 107, 0.6);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Dropdown Menu */
.sidebar nav .dropdown-container {
    display: none;
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    margin-bottom: 8px;
}

.sidebar nav .dropdown-container.active {
    display: flex;
    flex-direction: column;
}

.sidebar nav .dropdown-btn i.fa-chevron-down {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.sidebar nav .dropdown-btn.open i.fa-chevron-down {
    transform: rotate(180deg);
}

.sidebar nav .dropdown-item {
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidebar nav .dropdown-item:hover {
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
}

.sidebar nav .dropdown-item.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    padding: 24px 20px;
    position: fixed;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    text-align: center;
}

.sidebar-logo .icon-circle {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 16px rgba(38, 166, 154, 0.1);
}

.sidebar-logo h2 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1e293b;
    margin: 0;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 6px;
    border-radius: 12px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.nav-link i {
    width: 24px;
    font-size: 1.1rem;
    margin-right: 12px;
}

.nav-link:hover {
    background: #f8fafc;
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 700;
}

.nav-indicator {
    position: absolute;
    left: 20px;
    width: calc(100% - 40px);
    background: #f0fdf4;
    border-radius: 12px;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    border: 1px solid #dcfce7;
    opacity: 0;
}

.sidebar-nav {
    position: relative;
    z-index: 1;
}

.nav-link,
.dropdown-btn {
    position: relative;
    z-index: 2;
    background: transparent !important;
    border: none !important;
}

.dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 6px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.dropdown-btn:hover {
    background: #f8fafc;
    color: var(--primary-green);
}

.dropdown-btn.open {
    color: var(--primary-green);
}

.dropdown-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    margin-bottom: 6px;
}

.dropdown-container.active {
    max-height: 500px;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 50%;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: var(--primary-green);
    background: #f0fdf4;
}

.dropdown-item.active::before {
    background: var(--primary-green);
}

.sidebar-footer {
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #fef2f2;
    color: #991b1b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #fee2e2;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: #fee2e2;
    transform: translateY(-2px);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 24px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: block !important;
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .header-user-info {
        display: none;
    }

    .header-user-pill {
        padding: 4px 8px !important;
    }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid-modern .subtext {
        display: none;
    }

    .content-overlap {
        margin-top: -40px;
    }

    .main-content [style*="background: linear-gradient"] {
        padding: 24px !important;
    }

    .main-content h2[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .header-banner h1 {
        font-size: 1.2rem !important;
    }

    .header-subtext {
        display: none;
    }
}

/* Flip Login Styles */
.login-wrapper {
    position: relative;
    width: 900px;
    height: 550px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    perspective: 1500px;
}

.login-box,
.signup-box {
    width: 50%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-box {
    position: absolute;
    right: 0;
    z-index: 1;
}

.login-box {
    z-index: 2;
}

.flip-page {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #26a69a 0%, #00796b 100%);
    z-index: 10;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: left;
    transform-style: preserve-3d;
    border-radius: 0 20px 20px 0;
}

.flip-page.flipped {
    transform: rotateY(-180deg);
}

.page-front,
.page-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.page-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #00796b 0%, #26a69a 100%);
}

.page-content i {
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #26a69a;
}

/* Dashboard Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-info h3 {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.bg-orange-light {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
}

.bg-green-light {
    background: rgba(46, 125, 50, 0.1);
    color: var(--secondary-green);
}

/* Responsive Grid for Mobile Access */
@media (max-width: 600px) {
    .auth-card {
        padding: 24px;
    }

    .main-content {
        padding: 16px;
    }
}

/* Search & Pagination Styles */
.search-container {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    padding-left: 40px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.search-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    pointer-events: none;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    transition: all 0.2s ease;
    min-width: 38px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--off-white);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--off-white);
}

@media (max-width: 600px) {
    .search-input {
        max-width: 100%;
    }

    .pagination-btn {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 32px;
    }
}

/* Modern Dashboard Utilities */
.header-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00796b 100%);
    height: 150px;
    margin: -24px -24px 0 -24px;
    padding: 24px 32px;
    color: white;
}

.header-banner h1 {
    color: white !important;
}

.header-banner p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.content-overlap {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.modern-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 24px;
    margin-bottom: 24px;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-modern {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card-modern .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-card-modern .label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
}

.stat-card-modern .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.stat-card-modern .subtext {
    font-size: 0.75rem;
    color: #2e7d32;
}

/* Modern Table */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.modern-table thead th {
    padding: 16px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #166534;
    font-weight: 700;
    background: #f0fdf4;
    border-top: 1px solid #dcfce7;
    border-bottom: 2px solid #bbf7d0;
}

.modern-table thead th:first-child {
    border-radius: 12px 0 0 0;
    border-left: 1px solid #dcfce7;
}

.modern-table thead th:last-child {
    border-radius: 0 12px 0 0;
    border-right: 1px solid #dcfce7;
}

.modern-table tbody tr {
    background: white;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-table tbody tr:hover {
    transform: scale(1.005);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.modern-table td {
    padding: 18px 20px;
    background: white;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.modern-table td:first-child {
    border-radius: 12px 0 0 12px;
    border-left: 4px solid #f1f5f9;
}

.modern-table tbody tr:hover td:first-child {
    border-left: 4px solid var(--primary-green);
}

.modern-table td:last-child {
    border-radius: 0 12px 12px 0;
    border-right: 1px solid #f1f5f9;
}

.status-pill {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.status-pending {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #ffedd5;
}

.status-not_started {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.status-idle {
    background: #f8fafc;
    color: #94a3b8;
    border: 1px solid #f1f5f9;
}

/* Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 0;
}

.sidebar:hover::-webkit-scrollbar {
    width: 4px;
}

.btn-primary-alt {
    background: #FF6B6B;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: 0.3s;
}

.btn-primary-alt:hover {
    background: #FF5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 14px;
}

.remember-me {
    color: #636E72;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-pass {
    color: #636E72;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-pass:hover {
    color: #FF6B6B;
}

.social-login {
    text-align: center;
    margin-top: 30px;
}

.social-login p {
    font-size: 14px;
    color: #b2bec3;
    position: relative;
    margin-bottom: 20px;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #dfe6e9;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #dfe6e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    border-color: #FF6B6B;
    color: #FF6B6B;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #b2bec3;
}

/* Responsive */
@media (max-width: 950px) {
    .login-wrapper {
        width: 100%;
        max-width: 450px;
        height: auto;
        flex-direction: column;
    }

    .flip-page {
        display: none;
    }

    .login-box,
    .signup-box {
        width: 100%;
        padding: 40px;
    }

    .signup-box {
        display: none;
        /* In mobile, maybe just show login */
    }
}