/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&amp;display=swap');



/* Login Box Styles */
#box {
  position: absolute;
  top: 3vw;
  left: 50%;
  transform: translateX(-50%);
  width: 65vw;
  margin: 0 auto;
  border: 3px solid rgb(255, 255, 255);
  background: rgba(48, 46, 45, 1);
  min-height: 0px;
  padding: 50px;
  z-index: 9999;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-radius: 23px;


}
/* Logo Styles */
#box .logo .logo-caption {
  font-family: "Lexend", sans-serif;
  color: white;
  text-align: center;
  margin-bottom: 0px;
}

#box .logo .tweak {
  color: #ffffff;
}

/* Control Styles */
#box .controls {
  padding-top: 30px;
}

#box .controls input {
  border-radius: 0px;
  background: rgb(255, 255, 255);
  border: 0px;
  color: white;
}

#box .controls input:focus {
  box-shadow: none;
}

#box .controls input:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

#box .controls input:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* Button Styles */
#box button.btn-custom {
  border-radius: 23px;
  margin-top: 8px;
  background: #ffffff;
  border-color: rgba(48, 46, 45, 1);
  color: white;
}

#box button.btn-custom:hover {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  background: rgba(48, 46, 45, 1);
  border-color: #ffffff;
}
