﻿body {
    margin-top: 65px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #7f7f7f;
    height: 100%;
}

ul {
    list-style-position: inside;
}

.alertMessage {
    color: #a94442;
    margin: 16px;
}

.buttonPrimaryLarge {
    width: 400px;
    height: 50px;
    background: #D9272E 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    font-family: 'Open Sans', sans-serif;
    line-height: 2;
}

.buttonPrimaryMedium {
    width: 184px;
    height: 50px;
    float: left;
    background: #D9272E;
    color: #ffffff;
    border-radius: 4px;
    border-color: #D9272E;
    font-family: 'Open Sans', sans-serif;
}

.buttonPrimaryMedium.focus {
    color: #d9272e;
    background-color: #ffffff;
    border-color: #7f7f7f;
}

.buttonPrimaryMedium:hover {
    color: #d9272e;
    background-color: #ffffff;
    border-color: #7f7f7f;
}

.buttonSecondaryMedium {
    width: 184px;
    height: 50px;
    float: right;
    background: #FFFFFF;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    line-height: 36px;
}

.buttonSecondaryMedium.focus {
    color: transparent;
    background-color: #d9272e;
    border-color: #d9272e;
}

.buttonSecondaryMedium:hover {
    color: #ffffff;
    background-color: #d9272e;
    border-color: #d9272e;
}

.body-content {
    width: 100%;
    height: 100%;
}

.passwordRequirements {
    margin-top: 40px;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.centerMainPanel {
    position: relative;
    width: 400px;
    margin: auto;
    z-index: 1500;
    text-align: center;
}

.centerMainPanelLoginMigration {
    position: relative;
    width: 800px;
    margin: auto;
    z-index: 1500;
    text-align: center;
    color: #000000 !important;
}

.centerMainPanelFullWidth {
    position: relative;
    margin: 10%;
    z-index: 1500;
    text-align: center;
}

.margin-top-8 {
    margin-top: 8vh;
}

.margin-top-4 {
    margin-top: 4vh;
}

.checkbox {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 33%;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #7f7f7f;
}

.checkbox:after {
    position: absolute;
    content: "";
    left: 9px;
    top: 9px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #d9272e;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity: 1;
}

.dialogueLarge {
    width: 400px;
    height: 33px;
    border-bottom: 1px solid #BFBFBF;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #BFBFBF;
    -webkit-box-shadow: none;
}

.formOptions2 {
    width: 400px;
    margin-top: 50px;
}

.formHeader {
    text-align: center;
    font: Bold 40px Open Sans;
    letter-spacing: 0;
    color: #7F7F7F;
    opacity: 1;
}

.newLoginMessage {
    text-align: left;
    letter-spacing: 0;
    color: #000000;
    margin: 16px;
}

.newLoginMessageDanger {
    text-align: left;
    letter-spacing: 0;
    color: #a94442;
    margin: 16px;
}

.message {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0;
    color: #7F7F7F;
}

.iconEye {
    width: 27px;
    height: 18px;
    background: transparent;
    opacity: 1;
}

input:checked ~ .checkbox {
    background-color: transparent;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
    border: 2px solid #7f7f7f
}

input:checked ~ .checkbox:after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity: 1;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #d9272e;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
}

ul.password-validation {
    list-style-type: none;
    text-align: left;
    padding-left: 100px;
}

.validation-valid {
    color: green;
}

.validation-valid:before {
    position: relative;
    left: -25px;
    content: "✔";
}

.validation-invalid {
    color: red;
}

.validation-invalid:before {
    position: relative;
    left: -25px;
    content: "✖";
}


