#container {
  width: 100%;
  height: 100vh;
  background-color: #6385FF;
  display: flex;
}
#container #left-panel {
  background-color: #EEEEFF;
  width: 700px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
#container #left-panel #panel {
  background-color: #FBFBFF;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(16, 22, 29, 0.1450980392);
  width: 500px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#container #left-panel #panel #header {
  height: 70px;
  line-height: 70px;
  margin-left: 50px;
  font-weight: 800;
  font-size: 1.6em;
}
#container #left-panel #panel #main-form {
  margin: 0px 30px;
}
#container #left-panel #panel #main-form .margin-top {
  margin-top: 15px;
}
#container #left-panel #panel #main-form .double-input {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#container #left-panel #panel #footer {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 0 30px 30px 30px;
}
#container #left-panel #panel #footer .error-message {
  color: #FF5757;
  text-align: center;
  display: block;
  width: 100%;
}
#container #left-panel #panel #footer #submit-button {
  width: 100%;
  background-color: #6385FF;
  line-height: 60px;
  text-align: center;
  color: #FBFBFF;
  font-size: 1.2em;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(16, 22, 29, 0.1450980392);
}
#container #left-panel #panel #footer #submit-button:hover {
  cursor: pointer;
  font-size: 1.3em;
}
#container #left-panel #panel #footer .footer-down {
  font-weight: 400;
  margin-top: 5px;
}
@media (max-width: 500px) {
  #container #left-panel #panel {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 700px) {
  #container #left-panel {
    width: 100%;
  }
}
#container #right-panel {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#container #right-panel img {
  width: 80%;
  height: auto;
}

.action {
  color: #6385FF;
  font-weight: 800;
}

.action:hover {
  cursor: pointer;
}

.entry-area {
  height: 60px;
  width: 100%;
  position: relative;
}
.entry-area input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1.2em;
  line-height: 60px;
  padding: 0 50px 0 30px;
  background-color: transparent;
  color: #414141;
  border-radius: 10px;
  border: 2px solid #cfcfcf;
}
.entry-area .label-line {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #cfcfcf;
  background-color: transparent;
  padding: 5px 15px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.entry-area .required {
  color: #FF5757;
  line-height: 30px;
  font-size: 2em;
  position: absolute;
  top: 30%;
  left: 5px;
  transform: translateY(-50%);
  font-weight: 800;
}
.entry-area .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #cfcfcf;
}
.entry-area .label-line:hover {
  cursor: text;
}
.entry-area input:focus {
  background-color: #EEEEFF;
  border-color: #6385FF;
}
.entry-area:focus-within .icon {
  color: #6385FF;
}
.entry-area:focus-within .label-line {
  color: white !important;
  background-color: #6385FF !important;
}
.entry-area input:not(:-moz-placeholder-shown) + .label-line {
  transform: scale(0.85);
  top: 0px;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #414141;
  background-color: #cfcfcf;
  z-index: 100;
}
.entry-area input:not(:placeholder-shown) + .label-line,
.entry-area input:focus + .label-line {
  transform: scale(0.85);
  top: 0px;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #414141;
  background-color: #cfcfcf;
  z-index: 100;
}
.entry-area .incorrect-value {
  border-color: #FF5757;
}

.rules-checkbox {
  padding: 5px 30px;
}

.popup {
  display: none;
}
.popup .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
.popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #FBFBFF;
  width: 450px;
  z-index: 1001;
  padding: 25px;
  border-radius: 10px;
}
.popup .content .header-icon {
  color: #3de22e;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 4em;
}
.popup .content .action-btn {
  font-size: 1.2em;
  background-color: #3de22e;
  padding: 15px;
  color: #FBFBFF;
  border-radius: 10px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0px 2px 10px rgba(16, 22, 29, 0.1450980392);
}
.popup .content .action-btn:hover {
  cursor: pointer;
  background-color: #2bc71d;
}
.popup .content .close-btn {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 2em;
}
.popup .content .close-btn:hover {
  cursor: pointer;
}
.popup .content .text {
  margin-top: 50px;
  display: block;
  text-align: center;
}

.popup.active {
  display: block;
}
.popup.active .content {
  transition: all 800ms ease-in-out;
  transform: translate(-50%, -50%) scale(1);
}

.reset-password-btn {
  color: #6385FF;
  display: block;
  position: absolute;
  right: 10px;
}

.reset-password-btn:hover {
  cursor: pointer;
}/*# sourceMappingURL=authentication.css.map */