body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

a {
    color: #337ab7;
    background-color: transparent;
    box-sizing: border-box;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

.signinAreaContainer {
    max-width: 450px;
    position: static;
    margin: 27px auto 102px auto;
}

/* Clear floats after image containers */
.row {
    display: flex;
    padding: 20px 0;
}

#product_title {
    flex: 0.80;
    height: 50px;
    background: left center no-repeat;
    background-size: contain;
    padding: 0;
    margin: 0 40px 0 0;
}

.logoDivider {
    margin: 0 5px 15px 5px;
    border-bottom: 1px solid #bfbfbf;
}

.signinForm {
    margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.signinForm h2 {
    text-align: left;
    color: #ff9a00;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.signinForm h3 {
    text-align: left;
    color: #333;
    font-size: 16px;
    margin: 18px 0 10px;
    padding: 0;
}

.signinForm input {
    width: 100%;
    height: 31px;
    padding-left: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 8px;
    padding: 5px 4px 8px auto;
    font-size: 14px;
    outline: none;
    color: #555;
}
.signinForm input:active, .signinForm input:focus {
    border: 1px solid #2f7eb2;
}

.signinForm button {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 9px;
    background: #0076a8;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-size: 15px;
    line-height: 1.0;
    outline: none;
    cursor: pointer;
    position: relative;
}

.signinForm button:hover {
    background: #3391b9;
}

.learnAbout {
    margin-top: 10px;
    margin-left: auto;
    font-size: 15px;
    font-weight: bold;
}

.signinActions {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer {
    margin: 0;
    padding: 4px 4px 30px 4px;
    width: 100%;
    background-color: #333;
    position: fixed;
    bottom: 0;
}

.copyright {
    color: white;
    font-size: 14px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #337ab7;
    color: #337ab7;
    margin-top: 10px;
    margin-bottom: 20px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #0076a8;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5%;
    left: 110%;
    width: 200px;
    font-size: 14px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #0076a8 transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
    visibility: hidden;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

.overlay {
    background-color: #D3D3D3;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 10;
    cursor : wait;
}

