body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    margin: 0;
    padding: 0;
}

.login-container, .dashboard {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.brand h1 {
    margin: 0;
    color: #005bbb;
}

.error-box {
    background: #ffdddd;
    padding: 10px;
    border-left: 4px solid #d00;
    margin-bottom: 15px;
}

.success-box {
    background: #ddffdd;
    padding: 10px;
    border-left: 4px solid #0a0;
    margin-bottom: 15px;
}

.login-form label {
    margin-top: 10px;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background: #005bbb;
    color: #fff;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
/* --------------------------------------------------
   ONMOVE CUSTOMER PORTAL — MOBILE FIRST
   Base styles = mobile
-------------------------------------------------- */

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    margin: 0;
    padding: 0;
    color: #222;
}

.login-container, 
.dashboard, 
.change-password-container {
    width: 92%;
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.brand h1 {
    margin: 0;
    color: #005bbb;
    font-size: 1.8rem;
}

.brand p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.error-box, .success-box {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.error-box {
    background: #ffe5e5;
    border-left: 4px solid #d00;
}

.success-box {
    background: #e5ffe5;
    border-left: 4px solid #0a0;
}

.login-form label {
    margin-top: 12px;
    display: block;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 14px;
    background: #005bbb;
    color: #fff;
    border: none;
    margin-top: 18px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
}

button:hover {
    background: #004999;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    font-size: 1.2rem;
}

.note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #666;
}

/* --------------------------------------------------
   TABLES — MOBILE STACKED
-------------------------------------------------- */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table th {
    background: #005bbb;
    color: #fff;
    padding: 10px;
    text-align: left;
}

.table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Mobile stacked rows */
@media (max-width: 600px) {
    .table tr {
        display: block;
        margin-bottom: 12px;
        background: #fff;
        border-radius: 8px;
        padding: 10px;
    }

    .table td, .table th {
        display: block;
        text-align: left;
        border: none;
    }

    .table th {
        border-radius: 8px 8px 0 0;
    }
}

/* --------------------------------------------------
   TABLET BREAKPOINT
-------------------------------------------------- */

@media (min-width: 600px) {
    .login-container, .dashboard {
        margin-top: 60px;
    }
}

/* --------------------------------------------------
   DESKTOP BREAKPOINT
-------------------------------------------------- */

@media (min-width: 900px) {
    .login-container, .dashboard {
        max-width: 600px;
    }

    .table {
        font-size: 1rem;
    }
}

/* --------------------------------------------------
   WIDESCREEN
-------------------------------------------------- */

@media (min-width: 1200px) {
    .dashboard {
        max-width: 900px;
    }
}
.strength-meter {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: bold;
}

#validation-list p {
    margin: 4px 0;
    font-size: 0.85rem;
}

.valid {
    color: #0a7;
}

.invalid {
    color: #d00;
}
/*gif**/
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #005bbb;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading .btn-loader {
    display: inline-block;
}

.onmove-header {
    width: 100%;
    background: #005bbb;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onmove-logo {
    height: 38px;
    width: auto;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-email {
    font-size: 0.95rem;
    opacity: 0.9;
}

.logout-btn {
    background: #fff;
    color: #005bbb;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

.logout-btn:hover {
    background: #e6e6e6;
}




