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

html {
  background-color: #56baed;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

a {
  color: #92badd;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after {
  width: 100%;
}



/* OTHERS */

*:focus {
  outline: none;
}

#icon {
  width: 60%;
}

* {
  box-sizing: border-box;
}

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

.loader {
  margin: auto;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body {
  display: flex;
  align-items: center;
  background-image: url(../img/Web_2023.png);
  background-size: 100% 100%;
}

.login-form {
  margin: auto;
  width: 500px;
  height: 335px;
  display: flex;
  border-radius: 50px;
  border: 1px solid #07386f;
}

.login_header {
  font-family: 'Times New Roman', Times, serif;
  margin: 20px;
  font-size: 15px;
  color: white;
}

.login-title {
  flex: 1;
  display: flex;
  align-items: center;
}

.login-action {
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-image: linear-gradient(to top, #07386f, #07386f);
}

.login-img {
  flex: 1;
  width: 100%;
  height: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
}

.login-img img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

form {
  flex: 2;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

form input[type="text"],
form input[type="password"] {
  border-radius: 20px;
  padding: 10px;
  margin: 10px;
  width: 200px;
  border: none;
  text-align: center;
  font-size: 15px;
}

.login-func {
  display: flex;
  width: 100%;
  align-items: center;
  margin: auto;
  text-align: center;
  padding: 5px;
}

.form-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
}

.btn-login {
  width: 200px;
  height: 100%;
  border-radius: 20px;
  background-color: rgb(17, 204, 151);
  padding: 10px;
  margin: 10px;
  margin: auto;
  border: none;
}

.remember-login {
  flex: 1;
  padding: 5px;
}

.remember-login label {
  font-size: 2vmin;
  font-family: Arial, Helvetica, sans-serif;
}

.forgot_password {
  flex: 1;
  padding: 5px;
  cursor: pointer;
}

.forgot_password p {
  font-size: 2vmin;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
}

.wait_div {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  visibility: hidden;
  backdrop-filter: blur(2px);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.loader-outside {
  background-color: white;
  border: 1px solid rgb(2, 179, 249);
  margin: auto;
  border-radius: 20px;
  padding: 5px;
}


/* Some media queries for responsiveness */
@media screen and (min-width:1900px) and (max-width:4000px) {
  .login-form {
    width: 33%;
  }

  form input[type="text"],
  form input[type="password"] {
    width: 10vw;
  }

  .btn-login {
    width: 10vw;
  }
}

@media only screen and (max-width: 1535px) {
  body {
    overflow-x: scroll;
  }
}

@media only screen and (max-width: 1535px) {
  .header {
    #min-width: 552px;
    #width: 1535px;
	min-width: 1280px;
	width: 100%;
  }

  body {
    #min-width: 552px;
    #width: 1535px;
	min-width: 1280px;
	width: 100%;
  }

  .content {
    #min-width: 552px;
    #width: 1535px;
	min-width: 1280px;
	width: 100%;
  }

  .content .left {
    min-width: 200px;
  }
}

@media only screen and (max-height: 738px) {
  .content {
    min-height: 500px;
    height: 738px;
  }

  body {
    min-height: 500px;
    height: 750;
  }

  .header {
    height: 74px;
  }

  .header-content {
    height: 74px;
  }

  .content-nav {
    height: 30px;
  }

  .left-list-title {
    height: 50px;
  }

  .left-list-title a i {
    font-size: 25px;
  }
}

@media only screen and (max-height: 738px) {
  body {
    overflow-y: scroll;
  }
}

.container {
	position: relative;
	width: 100%;
	height: 100%;
}

.box {
	width: 100%;
	height: 100%;
}

