body {
	margin: 0;
	background-color: #004455;
	font-family: "Asap", sans-serif;
	overflow-x: hidden;
}

/* Apply different styles for portrait orientation */
@media (orientation: portrait) {
  body {
    zoom: normal;
  }
}

/* Apply different styles for landscape orientation */
@media (orientation: landscape) {
  @media (max-width: 768px) {
      /* CSS styles for mobile devices go here */
      body {
          zoom: 0.5;
      }

      .back_login {
        top: 80% !important;
      }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
      /* CSS styles for tablets go here */
      body {
          zoom: 0.5;
      }

      .back_login {
        top: 80% !important;
      }
  }
}

h1 {
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 48px;
}
p {
	font-size: 12px;
	color: white;
}

.header {
	position: relative;
	text-align: center;
	background-color: #004455;
	color: white;
}
.logo {
	width: 50px;
	fill: white;
	padding-right: 15px;
	display: inline-block;
	vertical-align: middle;
}

.inner-header {
	height: 85vh;
	width: 100%;
	margin: 0;
	padding: 0;
}

.flex {
	/*Flexbox for containers*/
	display: flex;
	justify-content: center;
	/* align-items: center; */
	text-align: center;
}

.waves {
	position: relative;
	width: 100%;
	height: 15vh;
	margin-bottom: -7px; /*Fix for safari gap*/
	min-height: 100px;
	max-height: 150px;
}

.content {
	position: relative;
	height: 20vh;
	text-align: center;
	background-color: #3682b3;
	color: white;
}

/* untuk login form */

.back_login {
	overflow: hidden;
	padding: 40px 30px 30px 30px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 340px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.login {
  overflow: hidden;
  background-color: white;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  position: absolute;
  top: 60%;
  left: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
  -moz-transition: -moz-transform 300ms, box-shadow 300ms;
  transition: transform 300ms, box-shadow 300ms;
  /* box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2); */
}
.login::before, .login::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
}
.login::before {
  left: 40%;
  bottom: -130%;
  background-color: rgba(197, 194, 13, 0.15);
  -webkit-animation: wawes 6s infinite linear;
  -moz-animation: wawes 6s infinite linear;
  animation: wawes 6s infinite linear;
}
.login::after {
  left: 35%;
  bottom: -125%;
  background-color: rgba(255, 184, 75, 0.4);
  -webkit-animation: wawes 7s infinite;
  -moz-animation: wawes 7s infinite;
  animation: wawes 7s infinite;
}
.login > input {
  font-family: "Asap", sans-serif;
  display: block;
  border-radius: 5px;
  font-size: 16px;
  background: white;
  width: 100%;
  border: 0;
  padding: 10px 10px;
  margin: 15px -10px;
}
.login > button {
	font-family: "Asap", sans-serif;
	cursor: pointer;
	color: #fff;
	font-size: 16px;
	width: 100px;
	border: 0;
	padding: 8px 0;
	margin-top: 10px;
	margin-left: -5px;
	border-radius: 5px;
	background-color: #34c38f;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
}
.login > button:hover {
	background-color: #30b081;
}

@-webkit-keyframes wawes {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes wawes {
  from {
    -moz-transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes wawes {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
}


.bg-danger {
	background-color: #f46a6a !important; }

.text-light {
  color: #f5f6f8 !important; }

.me-2 {
  margin-right: 0.5rem !important; }