/* ALL VERSION */
* {
  font-family: 'century gothic';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  zoom :100%;
}

/* Utility */
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

input:focus, input:active {
  outline: none !important;
  box-shadow: none !important;
}

body {
  background-color: rgb(234, 234, 235);
}
.inputBox{
    z-index: 10;
    position: relative;
    width: 400px;
    height: 60px;
}
.inputBox input{
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    background: white;
    padding: 0 20px;
    font-size: 18px;
    box-sizing: border-box;
    border-radius: 8px;
}
.inputBox input::placeholder{
    color: black;
}
#toggle{
    position: absolute;
    top: 100%;
    right: 5px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url(assets/show.png);
    background-size: cover;
    cursor: pointer;
}
#toggle.hide{
    background: url(assets/hide.png);
    background-size: cover;
}

/* Utility */
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

input:focus, input:active {
  outline: none !important;
  box-shadow: none !important;
}

/* login */
.login {
  z-index: 10;
  position: relative;
  text-align: center;
  color: black;
  font-weight: bold;
}

.login h2 {
    font-size: 22px !important;
}

.login p {
    font-size: 15px;
    margin-bottom: 5px;
}

.login input {
  border: none;
  border-radius: 30px;
  align-items: center;
  padding: 8px;
  width: 100%;

}

.row .user-login button {
    margin-top: 50px;
  background-color: #009944;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 30px;
  border: none;
  padding: 8px;
  width: 120px;
}

.row .user-login button:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Header */

/* Navbar */
.Navbar-logo img {
  height: 75px;
  margin-top: -20px;
  filter: drop-shadow(0px 0px 0.8px #ffff);
}

.navbar-icon img {
  height: 20px;
  border: none;
}

.nav-link:hover::after {
  content: '';
  display: block;
  border-bottom: 3px solid #ffffff;
  margin-bottom: -3px;
}

.dropdown-menu {
  background-color: #66CDAA;
}

.fa-caret-down {
  color: #ffffff;
}
.dropdown-item {
  color: white;
}

/* Instruksi */
.instruksi {
  background-color: #66CDAA;
  color: white;
  padding: 15px 0 5px 0;
  border-radius: 10px;
  box-shadow: 4px 4px 5px 1px grey;
}

/* Form-body */
.form-body {
  background-image: url("assets/yyv2_2.png");
  background-color: #ffffff;
  background-size: cover;
  border-radius: 10px;
  padding: 20px;
  color: white;
  box-shadow: 4px 4px 10px 1px grey; 
  margin: 80px auto;
  margin-top: -30px;

}

.form-group {
  color: black;
}

.reg {
  background-color: #66CDAA;
  color: white;
  border-radius: 10px;
  margin: 10px 0px;
}

.reg:hover {
  color: black;
  background-color: #ccc;
}

/* Footer */
.footer {
  margin: 40px 0 20px 0;
}

/* DESKTOP VERSION */
@media (min-width: 992px) {
  .navbar-nav li {
    margin-left: 30px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 575.98px) {
  .container, .dropdown-menu, h5, .reg {
    font-size: 15px;
  }
}
