
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary: #00b5da;
    --font: 'Source Sans Pro', sans-serif;
}

body, html {
    height: 100%;
    font-family: var(--font);
    background-color: #6e6c6c; /* just before bg is loaded */
}

/*---------------------------------------------*/
a {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}

.systeminfo {
    font-size: 20px;
    font-weight: 600;

}

.alert {
    color: #000000;
    font-weight: bold;
    text-align: center;
}

input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

input:-moz-placeholder {
    color: rgb(0, 0, 0);
}

input::-moz-placeholder {
    color: rgb(0, 0, 0);
}

input:-ms-input-placeholder {
    color: rgb(0, 0, 0);
}

textarea::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

textarea:-moz-placeholder {
    color: rgb(0, 0, 0);
}

textarea::-moz-placeholder {
    color: rgb(0, 0, 0);
}

textarea:-ms-input-placeholder {
    color: rgb(0, 0, 0);
}

.help-text {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.0);
	color: black;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hover-darken {
    color: black;
}

.hover-darken:hover {
    color: #333333;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    /*background-image: radial-gradient(#00b5da, #005465);*/
    position: relative;
    z-index: 1;    
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; }}
.fade-in {
    animation: bgFade 4s 0s forwards;
}
.fade-in-delayed {
    animation: bgFade 5s 2s forwards;
}
@keyframes bgFade {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.container-login-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
}

#backgroundAuthor {
    display: none;
    opacity:0;
}

.header-logo {
    margin: 0px;
    /*background-color: white;*/
    margin-left: -60px;
    margin-right: -60px;
    padding-top: 20px;
    margin-bottom: 50px;
}


.wrap-login {
    width: 400px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 55px 37px 55px;

    background-color: rgba(255, 255, 255, 1);
}

.wrap-banner {
    width: 800px;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px 25px 25px 25px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 20px;
    font-size: 12px;

    background-color: rgba(255, 255, 255, 1);
}

.login-form {
    width: 100%;
}

.login-logo {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.img-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.login-title {
    font-family: var(--font);
    font-size: 30px;
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    display: block;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(0, 0, 0, 0.24);
    margin-bottom: 30px;
}

.input {
    font-family: var(--font);
    font-size: 16px;
    color: #000000;
    line-height: 1.2;

    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    background: rgb(0, 0, 0);
}

input[type="checkbox"] {	
	cursor: pointer;
}

.focus-input::after {
    /*font-family: Material-Design-Iconic-Font;*/
    font-size: 22px;
    color: rgb(0, 0, 0);

    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 9px;
    left: 0px;
    padding-left: 5px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.button-group {
    display: flex;
    width: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

.button-group button {
    font-size: 4rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.buttonactive {
    font-size: 4rem;
    background-color: var(--primary);
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.input:focus {
    padding-left: 5px;
}

.input:focus + .focus-input::after {
    top: -22px;
    font-size: 18px;
}

.input:focus + .focus-input::before {
    width: 100%;
}

.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sso{
    margin-bottom: 20px;
}

button[disabled]{
    opacity: 0.5;
    cursor: default;
}

.login-form-btn {
    font-family: var(--font);
    font-size: 16px;
    color: #ffffff;
    margin-top: 8px;
    line-height: 1.2;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    min-width: 200px;
    height: 50px;
    border-radius: 25px;
    width: 250px;
    text-decoration: none;
    margin: 8px auto;

    background: var(--primary);

    position: relative;
    z-index: 1;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
	cursor: pointer;
}

.login-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    opacity: 1;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-form-btn:hover {
    color: #fff;
}

.login-form-btn:hover:before {
    opacity: 0;
}

@media (max-width: 576px) {
    .wrap-login {
        padding: 0px 15px 37px 15px;
    }
}

.validate-input {
    position: relative;
}

.number-challenge-div {
    text-align: center; 
    font-size: 15px; 
    margin: 10px
}
.number-challenge-number-div {
    text-align: center;
    font-size: 30px;
    margin: 10px
}
/*
.alert-validate::before {
  color: #c80000;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: 'Source Sans Pro', sans-serif;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
} */


.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.login-form-btn > .material-icons {
    margin-right: 10px;
    font-size: 24px;
    vertical-align: middle;
}


.app-name {
    font-family: var(--font);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #000000;
    margin: 0px;
    padding-left: 10px;
}

.horizontal-align {
    display: flex;
    align-items: center;
}
