* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 95%;
    max-width: 900px;
    background: #fff;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Left Panel */
.auth-left {
    flex: 1;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-left h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.auth-left p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Right Panel */
.auth-right {
    flex: 1;
    padding: 40px;
}

.auth-right h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #2c5364;
    outline: none;
}

.hint {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

/* Image Box */
.image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 2px solid #ddd;
}

#marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: red;
    border-radius: 50%;
    display: none;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Button */
.btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* Links */
.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.links a {
    font-size: 13px;
    color: #2c5364;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        padding: 30px;
        text-align: center;
    }
}

.links.center {
    justify-content: center;
}

input[type="text"] {
    letter-spacing: 4px;
    text-align: center;
    font-size: 18px;
}


/* ===== SIMPLE HEADER DASHBOARD ===== */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0f2027;
}

.simple-header {
    height: 64px;
    width: 100%;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #fff;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

.logo span {
    color: #4fd1c5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.logout-btn {
    background: #ff4d4d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.logout-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
    .simple-header {
        padding: 0 15px;
        font-size: 13px;
    }

    .logo {
        font-size: 18px;
    }
}

/* OTP Input Styling */
#reset_otp {
    text-align: center;
    letter-spacing: 6px;
    font-size: 18px;
    font-weight: 500;
}


/* ===== USER INFO PAGE ===== */

.page-wrapper {
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.page-wrapper h2 {
    margin-bottom: 5px;
}

.page-wrapper .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Table box */
.table-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th,
.user-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 14px;
}

.user-table th {
    width: 30%;
    background: #f4f6f9;
    color: #333;
}

.user-table tr:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 600px) {
    .page-wrapper {
        padding: 20px;
    }

    .user-table th,
    .user-table td {
        padding: 12px;
        font-size: 13px;
    }
}

.user-table thead th {
    background: #243b55;
    color: #fff;
}
