﻿@font-face {
    font-family: "customer";
    src: url("./fonts/customer.woff") format("woff");
}

:root {
    /* Colours */
    --primary: #005CA9;
    --secondary: #F7A600;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;

    /* Fonts */
    --font-family: "customer",Lato,sans-serif;
}

div:has(>#Username:focus):after {
	content: 'Your login name is your AccountCode_EmailAddress without the @domain part. E.g. ABC0001_john.smith';
	position: absolute;
	padding: 0.25rem;
	border: rgba(0,0,0,0.2) 1px solid;
	background: white;
	border-radius: 5px;
	max-width: calc(500px - 4.5rem - 2px);
	z-index: 1;
}