/* Date: 04-04-2024 08:31  Version: 10.1.56.p1.0099 */
/* fonts */
@font-face {
    font-family: "OpenSansLight";
    src: url("fonts/OpenSans/OpenSans-Light.woff");
    src: url("fonts/OpenSans/OpenSans-Light.woff") format("woff");
}

@font-face {
    font-family: "OpenSansItalic";
    src: url("fonts/OpenSans/OpenSans-Italic.woff");
    src: url("fonts/OpenSans/OpenSans-Italic.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OpenSansRegular";
    src: url("fonts/OpenSans/OpenSans-Regular.woff");
    src: url("fonts/OpenSans/OpenSans-Regular.woff") format("woff");
}

@font-face {
    font-family: "OpenSansSemiBold";
    src: url("fonts/OpenSans/OpenSans-SemiBold.woff");
    src: url("fonts/OpenSans/OpenSans-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "OpenSansBold";
    src: url("fonts/OpenSans/OpenSans-Bold.woff");
    src: url("fonts/OpenSans/OpenSans-Bold.woff") format("woff");
}

/* fonts
	font-family: 'OpenSansLight',arial, sans-serif;

	font-family: 'OpenSansRegular',arial, sans-serif;
	font-weight: 400;

	font-family: 'OpenSansSemiBold', arial, sans-serif;
	font-weight: 600;

	font-family: 'OpenSansBold', arial, sans-serif;
	font-weight: 700;
*/

body {
  font-family: "OpenSansRegular", arial, sans-serif;
  font-weight: 400;
  height: 100vh;
  background-size: cover;
  overflow: hidden;
}

:focus {
  outline: none;
}

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(359deg);
  }
}

* {
  box-sizing: border-box;
}

.col-1 {
  width: 100%;
  height: 100%;
  background-image: url(../images/ppp.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 75%;
}

.col-1 h1 {
  font-family: "OpenSansBold", arial, sans-serif;
  font-weight: 600;
  font-size: 80px;
  color: #cccccc;
  text-align: left;
  margin: 0;
  padding: 150px 0 0 200px;
}

.col-2 {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  background-color: #204286;
  height: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.col-2 .logo img {
  width: 320px;
  padding-bottom: 20px;
}

.col-2 .wrappit {
  padding: 40px;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  background: rgba(4, 40, 68, 0.85);
}

.login {
  padding: 10px 20px 20px 20px;
  width: 100%;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.login.loading button {
  max-height: 100%;
  padding-top: 50px;
}

.login.loading button .spinner {
  opacity: 1;
  top: 40%;
}

.login.ok button {
  background-color: #8bc34a;
}

.login.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}

.login input {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
}

.login input + i.fa {
  color: #fff;
  font-size: 1em;
  position: absolute;
  margin-top: -47px;
  opacity: 0;
  left: 0;
  transition: all 0.1s ease-in;
}

.login input:focus {
  outline: none;
  color: #444;
  border-color: #204286;
  border-left-width: 35px;
}

.login input:focus + i.fa {
  opacity: 1;
  left: 30px;
  transition: all 0.25s ease-out;
}

.login a {
  font-size: 0.8em;
  color: #204286;
  text-decoration: none;
}

.login .title {
  color: #444;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 10px 0;
  color: #00a5e1;
}

.login button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #00a5e1;
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
}

.login button .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #e84e1b;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease,
    border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}

.login:not(.loading) button:hover {
  box-shadow: 0px 1px 3px #204286;
}

.login:not(.loading) button:focus {
  border-bottom-width: 4px;
}

footer {
  display: block;
  padding-top: 50px;
  text-align: center;
  color: #ddd;
  font-weight: normal;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  font-size: 0.8em;
}

footer a,
footer a:link {
  color: #fff;
  text-decoration: none;
}

#ContentPlaceHolder1_Login1,
#ContentPlaceHolder1_Login1 table {
  width: 100%;
}

#ContentPlaceHolder1_Login1_UserNameRequired,
#ContentPlaceHolder1_Login1_PasswordRequired {
  display: none;
}

#ContentPlaceHolder1_Login1_RememberMe {
  width: 20px;
  display: inline;
  margin-right: 6px;
}

#ContentPlaceHolder1_Login1 label {
  font-size: 13px;
  font-family: "OpenSansSemiBold", arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

#divReset ul {
	margin-top:0px;
	font-size: 0.8em;
	color:#204286;
	list-style:square;
}


@media screen and (min-width: 0\0) and (min-resolution: +72dpi) {
  /* IE9+ CSS */
  #ContentPlaceHolder1_Login1_RememberMe {
    padding: 0;
    border: 0;
  }
}

#ContentPlaceHolder1_Login1_UserName:-ms-input-placeholder {
  color: #898f9c !important; /* IE11 needs the !important flag */
}
:-ms-input-placeholder {
  color: #ccc !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 480px) {
  .col-1 {
    display: none;
    background-image: none;
  }

  .col-2 {
    width: 100%;
  }
}
@media only screen and (max-height: 750px) {
  .logo {
    display: none;
  }
}
