@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background: url('foto/D1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 10; 
}

.login-box {
  background-color: white;
  width: 600px;
  height: auto;
  padding: 30px 40px; 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 11;
}

.title {
  font-size: 33px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: -10px;
}

.subtitle {
  font-size: 17px;
  color: gray;
  margin-bottom: 48px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center; 
}

label {
  font-size: 17px;
  margin: 10px 0 5px;
  text-align: left;
  margin-left: 43px;
  width: 100%; 
  color: #414040;
}

input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 20px;
  width: 90%;
  box-sizing: border-box;
}

.reset-button {
  background-color: #000000;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 35px;
  width: 20%;
  font-weight: bold; 
}

.reset-button:hover {
  background-color: #222223;
}

.info-box {
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.info-box ol {
  padding-left: 20px;
  margin: 0;
}

.info-box ol li {
  margin-bottom: 17px;
}

.signup {
  font-size: 14px;
  margin-top: 15px;
}

.signup a {
  color: #007BFF;
  text-decoration: none;
}

.signup a:hover {
  text-decoration: underline;
}

.bubble-container {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  overflow: hidden;
  z-index: -1;  
}

.bubble {
  position: absolute;
  bottom: -50px;  
  background: rgb(188, 228, 255);
  border-radius: 50%;
  opacity: 1;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
      transform: translateY(0);
      opacity: 1;
  }
  80% {
      opacity: 1;
  }
  100% {
      transform: translateY(-120vh);  
  }
}
