:disabled {
    color: inherit;
    pointer-events: none;
}


:focus {
    outline: none;
}


:hover {
    -webkit-tap-highlight-color: transparent;
}


:root {
    --color--white: #FFFFFF;
    --color--black: #000000;
    --color--steel-gray: #5B5D5E;
    --color--ice-mist: #F0F4F9;
    --color--light-gray: #E6E8E9;
    --color--baby-blue: #C3EAFF;
    --color--brand: #05405F;
    --color--success: #02AF75;
    --color--error: #F72121;
    --color--info: #0074D7;

    --height--viewport: var(--height--window, 100vh);
    --width--container: 800px;
    --width--viewport: calc(100vw - var(--width--scrollbar));
}



::placeholder {
    color: var(--color--steel-gray);
}


::selection {
    background-color: var(--color--brand);
    color: var(--color--white);
}



::-moz-focus-inner {
    border: none;
}


::-webkit-search-cancel-button {
    display: none;
}



a {
    color: inherit;
    text-decoration: none;
}


body {
    background-color: var(--color--white);
    color: var(--color--black);
    font-family: "Arial";
    font-size: 15px;
    height: inherit;
    margin: 0;
}


button {
    cursor: pointer;
    font: inherit;
    text-align: inherit;
    text-transform: inherit;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}


html {
    height: 100%;
}


img {
    pointer-events: none;
    user-select: none;
}


input[type="checkbox"] {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
}

input[type="email"] {
    background-color: transparent;
    border: 1px solid var(--color--steel-gray);
    border-radius: 5px;
    box-sizing: border-box;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: 15px 16px 13px;
    width: 100%;
}


label {
    display: block;
}


p {
    line-height: 21px;
}