@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  position: relative;
  background: url(images/bakcground.svg);
  background-repeat: repeat;
  background-size: 100px;
  font-family: "Montserrat", sans-serif;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #ffffff;
  border-radius: 8px;
}

.logo {
  background-color: #81899500;
  width: 100%;
  position: absolute;
  z-index: 11;
  top: 30px;
}

.logo img {
  height: 120px;
  margin: 0 auto;
  display: flex;
}

.lock-screen-container {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
}

.lock-screen {
  position: relative;
  background-color: rgb(255, 255, 255);
  padding: 4.7rem 2.4rem;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  height: 100%;
}

.lock-screen img {
  height: 100px;
  transform: translate(0, -50px);
}

.lock-screen h1 {
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.lock-screen .profile {
  margin-bottom: 1rem;
}

.lock-screen .profile p {
  font-size: 13px;
  color: #818995;
}

.lock-screen .input-group {
  position: relative;
  margin-bottom: 1rem;
}

.lock-screen input[type="password"],
.lock-screen input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.input-group input[type="password"] {
  font-size: 14px;
}

.lock-screen .toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #818995;
  font-size: 1.2em;
}

.lock-screen button {
  position: absolute;
  font-weight: bold;
  font-size: 15px;
  background-color: #d93333;
  color: white;
  padding: 10px 110px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transform: translate(-47%, 20px);
  transition: all 0.3s;
}

.lock-screen button:hover {
  background-color: rgb(84, 84, 84);
}

@media (max-width: 575px) {
  .container {
    display: flex;
    width: 95%;
    height: 441px;
    position: relative;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
      rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  }
  .lock-screen-container {
    text-align: center;
    position: absolute;
    transform: translate(0%, 0%);
  }
  .lock-screen {
    padding: 5.7rem 2.4rem;
    height: 150px;
    background-color: transparent;
    box-shadow: none !important;
  }

  .lock-screen {
    padding: 5.7rem 2.4rem;
    height: 100%;
  }
  .lock-screen h1 {
    padding-bottom: 50px;
  }

  .lock-screen button {
    padding: 10px 111px;
    width: 240, 25;
  }
}
