* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: var(--space-3);
    font-weight: 600;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--secondary-blue);
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Hide native browser password reveal icons (Edge, IE, etc) to prevent double eye buttons */
input::-ms-reveal,
input::-ms-clear {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

