body {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
}

h1, h2 {
    color: #333;
}

input[type="email"], input[type="tel"], input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 12px 20px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0052a3;
}

.strength-meter {
    height: 8px;
    background: #ddd;
    margin: 8px 0 4px 0;
    border-radius: 4px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 13px;
    margin-top: 2px;
}

p[style*="color:green"] { background: #d4edda; color: #155724; padding: 10px; border-radius: 4px; }
p[style*="color:red"]   { background: #f8d7da; color: #721c24; padding: 10px; border-radius: 4px; }

/* App Menu */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.menu-btn img {
    width: 32px;
    height: 32px;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.menu-overlay.show { display: flex; }

.menu-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.menu-box a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.menu-box a:hover {
    color: #0066cc;
}


/* User Menu */
.user-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.user-btn img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.user-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.user-overlay.show { display: flex; }

.user-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    text-align: left;
}
















