:root {
  --color1: #04abb4;
  --color2: #357082;
}

body {
  font-family: Calibri, system-ui, sans-serif;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bee-SignIn-Background {
  position: absolute;
  max-width: 100vw;
  max-height: 100vh;
  visibility: hidden;
}
.bee-ready .bee-SignIn-Background.bee-SignIn-has-src {
  visibility: visible;
}
  
.bee-SignIn-Panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 400px;
  margin-left: -300px;
  margin-top: -200px;
  visibility: hidden;
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: 5px 5px #dfdddd;
}
.bee-ready .bee-SignIn-Panel {
  visibility: visible;
}

.bee-SignIn-Logo {
  position: absolute;
  left: 0;
  top: -40px;
  max-height: 80px;
}

.bee-SignIn-Form {
  margin-top: 15%;
}

.bee-SignIn-Input,
.bee-SignIn-Button {
  position: relative;
  margin-top: 3%;
  left: 27%;
  width: 55%;
  font-size: larger;
  box-sizing: border-box;
  box-shadow: 6px 6px #bfbdbd;
  border-color: transparent;
  border-radius: 12px;
}

.bee-SignIn-Input {
  padding: 5px 5px 5px 50px;
}

.bee-SignIn-User-icon,
.bee-SignIn-Password-icon {
  position: absolute;
  left: 28%;
  width: 24px;
  height: 24px;
}
.bee-SignIn-User-icon {
  top: 113px;
}
.bee-SignIn-Password-icon {
  top: 167px;
}

.bee-SignIn-Button {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: var(--color1);
  color: white;
  font-weight: bolder;
  border: 1px solid transparent;
  cursor: pointer;
}
.bee-SignIn-Button:hover {
  background-color: var(--color2);
}
.bee-SignIn-Button:active {
  background-color: var(--color2);
}

.bee-SignIn-Help {
  margin-top: 10px;
  margin-right: 18%;
  text-align: right;
  font-weight: bolder;
  color: var(--color1);
  cursor: pointer;
  visibility: hidden;
}
 
.bee-SignIn-Input-user-Invalid,
.bee-SignIn-Input-password-Invalid {
  border-color: red;
}

.bee-SignIn-Locale-container {
  margin-top: 45px;
  margin-right: 18%;
  text-align: right;
}
.bee-SignIn-Locale-label {
  text-transform: uppercase;
  display: inline-block;
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #565e6d;
  color: white;
  font-size: x-large;
  cursor: pointer;
}
.bee-SignIn-Locale-label:hover:not(.bee-SignIn-Locale-selected) {
  background-color: var(--color2);
}
.bee-SignIn-Locale-selected {
  background-color: var(--color1);
}
.bee-SignIn-Locale-input {
  visibility: hidden;
}

@keyframes autofill {
  to {
    background: white;
  }
}

input:-webkit-autofill {
  animation-name: autofill;
  animation-fill-mode: both;
}

input:focus,
button:focus {
 outline-style: none;
}
