* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vs-container-login {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.vs-container-login .img-background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(4px);
}

.login-frame {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-container-front-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  width: 80vw;
  max-width: 1000px;
  border-radius: 25px;
  position: absolute;
  background: white;
  border: 3px solid white;
  box-shadow: 8px 8px 6px 0 #0006;
  overflow: hidden;
}

.image-frame {
  height: 100%;
  width: 60%;
  position: relative;
}

.image-frame .img-back {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image-frame .img-front {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  display: flex;
  justify-content: center;
  object-fit: contain;
}

.vs-login {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../images/logo/background-red.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 25px 25px 0;
}

.vs--logo {
  width: 100px;
  height: 80px;
}

.vs-title {
  font-size: 16px;
  margin-bottom: 3vh;
  color: #fff;
}

.vs-form-group {
  width: 70%;
}

.vs-d-flex {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.vs-form-label {
  color: #1e9f07;
  font-size: 14px;
  padding: 15px 5px 5px;
}

.vs-form-control {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  font-size: 12px;
  color: #ffffffcc;
  background-color: #ee6b67;
  border: 2px solid #fff;
  border-radius: 13px;
  outline: none;
}
.vs-form-group .vs-form-control:focus,
.vs-form-group .vs-form-control:focus-visible,
.vs-form-group .vs-form-control {
    padding: 0.5rem 0.5rem;
    border-top:none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #1e9e07;
    outline: none;
    background-color: #f7dcda;

 
}

::placeholder {
  font-size: 14px;
  color: #ffffffcc;
}
input::placeholder {
    padding: 0 0.5rem;
    background-color: transparent;
    font-size: 1.15rem;
}

.vs-d-flex-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn-login {
  width: 50%;
  height: 40px;
  border-radius: 12px;
  border: 2px solid #fff;
  background-color: #f7dcda;
  font-size: 14px;
  font-weight: bold;
  color: #ff0000;
  cursor: pointer;
}

.btn-login:hover {
  background-color: #fff;
  color: #ff0000;
}

.vs-d-flex-copyright {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20%;
  font-size: 14px;
  color: #fff;
}

.vs-d-flex-copyright p {
  padding: 3px 0;
}

.vs-form-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error_text {
  color: rgb(136, 119, 22);
  font-size: 12px;
}

.overlay-blur {
  width: 100vw;
  height: 100vh;
  position: absolute;
}

@media screen and (max-width: 820px) {
  .vs-container-front-img {
    flex-direction: column;
    width: 95vw;
    height: auto;
  }

  .image-frame {
    width: 100%;
    height: 40vh;
  }

  .vs-login {
    width: 100%;
    border-radius: 0 0 25px 25px;
    padding: 20px 0;
  }

  .vs-form-group {
    width: 80%;
  }
}
