@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --primary: #005799;
    --primary-hover: #00355e;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Instrument Sans', sans-serif;
}

.main {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2em;
    box-sizing: border-box;
}

.card {
    background-color: #ffffff;
    border-radius: .5em;
    max-width: 500px;
    width: auto;
    padding: 2em;
}

.logo {
    max-width: 150px;
    margin-bottom: 1em;
}

.icon {
    width: 1.2em;
    height: 1.2em;
}

hr {
    margin: 2em 0 2em 0;
    border: solid #f2f2f2 1px;
}

.small {
    font-size: small;
}

.gray {
    color: #a0a0a0;
}

.button {
    background-color: var(--primary);
    border-radius: .5em;
    padding: 10px 20px 10px 20px;
    color: #ffffff !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    margin-top: 1em;
    text-decoration: none;
    box-sizing: border-box;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: hidden;
}

.button:hover {
    background-color: var(--primary-hover);
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary-hover);
}
