* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
}

/* WRAPPER */
.auth-wrapper {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */
.auth-left {
    width: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-left h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.auth-left span {
    color: #38bdf8;
}

.auth-left p {
    margin-bottom: 25px;
    color: #cbd5e1;
}

.auth-left ul {
    list-style: none;
}

.auth-left ul li {
    margin-bottom: 10px;
    color: #e2e8f0;
}

.secure-box {
    margin-top: 30px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 14px;
}

/* RIGHT SIDE */
.auth-right {
    width: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.login-card {
    width: 350px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.login-card small {
    color: #64748b;
}

.login-card h2 {
    margin: 10px 0 20px;
}

/* INPUT */
.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

/* BUTTON */
.login-card button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.login-card button:hover {
    background: #1d4ed8;
}

/* GOOGLE */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    margin-top: 10px;
}

.google-btn:hover {
    background: #f1f5f9;
}

/* DIVIDER */
.divider {
    margin: 15px 0;
    color: #64748b;
}

/* WAITING PAGE */
.waiting-page {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.waiting-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    width: 350px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease;
}

.waiting-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.waiting-box h2 {
    margin: 10px 0;
    color: #1e293b;
}

.waiting-box p {
    color: #64748b;
    font-size: 14px;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #1d4ed8;
}
/* PROFILE CARD */
.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.profile-header h2 {
    margin: 0;
}

.profile-header p {
    margin: 0;
    color: #64748b;
}

.status {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.status.approved {
    background: #dcfce7;
    color: #166534;
}

.status.waiting {
    background: #fef3c7;
    color: #92400e;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.profile-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
}

.profile-item label {
    font-size: 12px;
    color: #64748b;
}

.profile-item p {
    margin: 5px 0 0;
    font-weight: bold;
}
.profile-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

/* ========================
   FORCE MOBILE FIX
======================== */
@media (max-width: 768px) {

    .auth-wrapper {
        flex-direction: column !important;
        height: auto !important;
    }

    .auth-left {
        width: 100% !important;
        height: auto !important;
        padding: 30px 20px !important;
        text-align: center;
    }

    .auth-right {
        width: 100% !important;
        height: auto !important;
        padding: 20px !important;
    }

    .login-card {
        width: 100% !important;
        max-width: 350px;
        margin: auto;
    }

}