/* =========================
   AZURE BLUE THEME – CIRCLE
   ========================= */

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #f5f7fb;
    color: #1a1a1a;
    min-height: 100vh;
    line-height: 1.6;
}

/* Headings */
h1 {
    font-size: 34px;
    font-weight: 600;
    color: #0078D4; /* AZURE BLUE */
}

h2, h3 {
    color: #0f172a;
}

/* Text */
p {
    font-size: 16px;
    color: #4b5563;
}

/* Links */
a {
    color: #0078D4;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 420px;
    margin: 80px auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

/* Buttons */
.btn {
    display: inline-block;
    width: 100%;
    background: #0078D4;        /* AZURE BLUE */
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.btn:hover {
    background: #106EBE;        /* Azure hover */
}

/* Forms */
label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

input, select {
    width: 100%;
    padding: 11px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #0078D4;
    box-shadow: 0 0 0 1px #0078D4;
}

/* Alerts */
.alert {
    background: #fde7e9;
    color: #a80000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .container {
        margin: 40px 14px;
        padding: 22px;
    }
}

/* ===== VERIFIED BADGE ===== */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.verified-badge .tick {
    width: 16px;
    height: 16px;
    background: #0078D4; /* Azure Blue */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


