
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  background-color: #fff;
  background-size: cover;
  background-image: url('/api/core/theme/asset/bg.png');
  background-position: left bottom;
}

.login-container {
  padding: 2rem;
  width: 450px;
  text-align: center;
  position: relative;
  background: #f6f6f6;
  border: 1px solid #eee;
  border-radius: 35px;
}

.logo-container {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.logo {
  width: 255px;
  height: 115px;
  margin-bottom: 20px;
  background-image: url('/api/core/theme/asset/logo_gotter.png');
  background-repeat: no-repeat;
  background-size: contain;
}


.form-group {
  margin-bottom: 2.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-input {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.form-actions {
  margin-top: 1rem;
}

.login-button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  background-color: #57b846;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  height: 56px;
  box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
  margin-top: 40px;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.4s;
}

  .login-button:hover {
    background-color: #333333;
    box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  }

.forgot-password-link:hover,
.back-button:hover {
  background-color: #F5F5F5;
  text-decoration: none;
}

.forgot-password-link,
.back-button {
  text-decoration: none;
  border: 1px solid #dbdbdb;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  border-radius: 50px;
}

.form-input-row {
  display: flex;
  align-items: center;
  position: relative;
}


  .form-input-row span.icon {
    position: absolute;
    right: 0.5rem;
  }

.pointer {
  cursor: pointer;
}

.version {
  color: #0000008a;
}

.p-error {
  color: red;
}

.app-header {
  margin-bottom: 10px;
  .app-name

{
  font-size: 20px;
}

.app-login {
  color: #0000008a;
}

}

.msg {
  margin-top: 35px;
}

.remind-actions button {
  width: 100%;
}

.remind-info {
  margin-bottom: 45px;
  font-size: 1rem;
}

.hello {
  font-size: 2em;
  color: #333333;
  margin-bottom: 20px;
 /* display: none;*/
}

.appver {
  padding: 2rem;
  text-align: left;
}

  .appver span {
    margin-right: 8px;
    color: #9a9a9a;
    font-weight: 400;
  }

.input-container {
  margin-bottom: 5px;
  position: relative;
}

  .input-container input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background: transparent;
    transition: border-bottom-color 0.3s;
  }

  .input-container label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 15px;
    color: #333333;
    transition: 0.3s ease-in-out;
    pointer-events: none;
  }

  .input-container input:focus ~ label,
  .input-container input:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 12px;
    color: #5b5b5b;
    ;
  }

  .input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #57b846;
    transition: width 0.3s ease-in-out;
  }

  .input-container input:focus ~ .underline {
    width: 100%;
  }


@media(max-width: 991px) {
  .login-container {
    width: 50vw;
  }
}

@media(max-width: 768px) {
  .login-container {
    width: 75vw;
  }

  .hello {
    font-size: 2em;
  }
}

@media(max-width:451px) {
  .logo {
    max-width: 70vw;
  }

  .login-container {
    width: 75vw;
    position: relative;
  }
}
