* {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  background-image: url(bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.container {
  height: 310px;
  width: 250px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 20px;
  color: rgb(41, 30, 51);
  backdrop-filter: blur(20px) brightness(100%);
  position: relative;
  top: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.331);
}

.head {
  position: relative;
  top: -55px;
  font-size: x-large;
  font-weight: 600;
}

input[type="text"],
input[type="password"] {
  border-radius: 8px;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0) !important;
  background: transparent;
  height: 30px;
  width: 200px;
  padding: 2px 0 2px 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in;
}

input[type="text"]:focus,
input[type="password"]:focus {
  transform: scale(1.03);
  outline: none;
}

input[type="submit"] {
  margin: 10px;
  height: 25px;
  width: 100px;
  background-color: rgb(69, 42, 99);
  border: none;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease-in;
}

input[type="submit"]:hover {
  transform: scale(1.05);
}

.form {
  position: relative;
  top: -10px;
}

a {
  color: #fbff00;
  margin-top: 10px;
}