﻿* {
    box-sizing: border-box;
}

html, body, form {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nashua-background {
    background-image: url(../Images/nashua-background.jpg);
    background-size: cover;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.nashua-header {
    background-color: #222;
    height: 100px;    
}

.nashua-logo {
    background-image: url(../Images/nashua_red.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: -10px;
    background-size: contain;
    height: 100px;
    width: 413px;
}

.nashua-content-wrapper {
    margin: 0 auto;
}

.nashua-loginbox {
    text-align: center;
    color: white;
    margin-top: 20px;
    padding: 10px;
    background: rgba(0,0,0,0.5);
}

.nashua-textbox, .nashua-button {
    width: 250px;
    font-size: 12pt;
    padding: 8px;
    background-color: transparent;
    border: 1px solid silver;
    color: white;
}

option {
    color: black;
}

.nashua-button {
    background-color: #222 !important;
    cursor: pointer;
    margin-bottom: 5px;
}

.nashua-powered-by-iqtech {
    padding: 10px;
    text-align:center;
}

@media only screen and (max-width: 950px) {
    .nashua-content-wrapper {
        width: auto;
    }
}

@media only screen and (min-width: 951px) {
    .nashua-content-wrapper {
        width: 950px;
    }
}