﻿/* =========================
   GLOBAL RESET / BASE
========================= */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F4F8FB;
    color: #1A1A1A;
}

/* =========================
   APP CONTAINER
========================= */
.app-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

/* =========================
   LOGO
========================= */
.app-logo {
    width: 180px;
    margin: 20px auto 30px auto;
}

/* =========================
   HEADERS
========================= */
h1 {
    color: #0B3D91;
    margin-bottom: 20px;
}

/* =========================
   INPUTS
========================= */
input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 5px rgba(0,174,239,0.5);
}

/* =========================
   BUTTONS
========================= */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    background-color: #0B3D91;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn:hover {
        background-color: #00AEEF;
    }

/* =========================
   SECONDARY BUTTON (LOGOUT)
========================= */
.btn-secondary {
    background-color: #cccccc;
    color: #333;
}

    .btn-secondary:hover {
        background-color: #999999;
    }

/* =========================
   STATUS / MESSAGES
========================= */
.status-message {
    margin-top: 15px;
    color: #cc0000;
    font-size: 14px;
}

/* =========================
   CARD STYLE (DASHBOARD)
========================= */
.card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* =========================
   DASHBOARD HEADER
========================= */
.dashboard-title {
    font-size: 20px;
    font-weight: bold;
    color: #0B3D91;
    margin-bottom: 20px;
}

/* =========================
   MOBILE TOUCH IMPROVEMENTS
========================= */
button,
input {
    -webkit-tap-highlight-color: transparent;
}
