* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
}

.fullscreen-container {
  background: #616161;
  background-image: url("/public/image/image1.jpg");
  height: 100vh;
  width: 100vw;
  display: -webkit-inline-flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-position: center center;
  background-attachment: fixed;
}

.login-container {
  padding: 50px 30px;
  border-radius: 25px;
  background: #fafafa;
  box-shadow: 3px 5px 25px #888888;
  width: 80%;
  max-width: 500px;
}
.login-container:hover {
  box-shadow: 0 0 0 2px #90add3;
}

h1 {
  text-align: center;
  color: #b39ddb;
}

.form1 {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btnlogin {
  cursor: pointer;
  font-size: 0.9rem;
  margin: 10px auto 0;
  padding: 12px 5px;
  width: 25%;
  border-radius: 100px;
  border: none;
  outline: none;
  color: white;
  background: linear-gradient(
    90deg,
    rgba(214, 109, 93, 1) 0%,
    rgba(255, 149, 88, 1) 71%
  );
}

.btnlogin:focus,
.btnlogin:hover {
  box-shadow: 0 0 0 2px #1c68be;
}

.forgot-password {
  text-align: center;
  margin: 20px auto 20px;
  text-decoration: none;
  color: #d1c4e9;
}
