﻿html * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, form {
    margin: 0;
}

h1 {
    margin: 0;
    font-weight:normal;
    font-size:2em;
    white-space:nowrap;
}
h2 {
    font-weight:normal;
    margin:0.5em;
}

a, a:link, a:visited {
    color: #FFFF01;
}
a:hover, a:active {
    color: white;
}

button, input[type=button], input[type=submit] {
    background-color: #076652;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius:15px;
    border:2px solid white;
    padding:5px 15px;
    font-size:1em;
}
button:hover, input[type=button]:hover, input[type=submit]:hover {
    background-color:#FFFF01;
    border-color:white;
    color:#076652;
}
button:disabled, button[disabled], input[type=button]:disabled, input[type=button][disabled], input[type=submit]:disabled, input[type=submit][disabled] {
    background-color: #dddddd;
    color: #999999;
}

@keyframes animate-top {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

dialog {
    animation-name: animate-top;
    animation-duration: 0.4s;
    text-align: left;
    padding: 0;
    border: thin solid white;
    border-radius: 15px;
    max-width: 600px;
}

dialog::backdrop {
    backdrop-filter: blur(3px);
}

dialog h1 {
    text-align: center;
    font-size: 1em;
    background-color: #076652;
    color: #ffffff;
    margin-bottom: 5px;
    padding: 5px;
}

dialog div {
    padding: 5px;
}

dialog label {
    display: block;
}

dialog input[type=text], dialog input[type=email] {
    width: 400px;
}

    dialog menu {
        text-align: right;
        background-color: #076652;
        margin-bottom: 0;
        padding: 5px;
    }

.fa-solid { cursor: pointer;}

#MenuBanner {
    width:100%;
    height:60px;
    padding:5px;

    background-color: #076652;
    background-image: url(/images/Masters/logo-small.png);
    background-repeat:no-repeat;
    background-position:center left;

    color: #FFFF01;
    text-align:center;

    position:fixed;
    top:0;
    z-index:10000;
}

#ContentWrapper {
    width:100%;
    position:absolute;
    top:60px;
    bottom:0;
    text-align:center;
    color:white;
}

#Footer {
    width: 100%;
    padding-top: 20px;
}