.container {
  width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.container-welcome {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 20px;
}

.container-welcome h2 {
  margin-bottom: 20px;
}

.blueOcean {
  color: #007BFF;
}

.register {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-container {
  padding: 20px;
  margin-right: 20px;
  width: 400px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.container-welcome.visible,
.login-container.visible {
  opacity: 1;
}

.login-container input {
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-container button:hover {
  background: #0056b3;
}

#login-form {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.message {
  font-size: 16px;
  margin-bottom: 15px;
}

.error {
  color: #2dc0da;
  font-weight: bold;
}

.success {
  color: yellowgreen;
  font-weight: bold;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-container i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.forgot-password,
#close-recovery,
#close-register {
  padding: 20px 0;
  font-size: 14px;
  cursor: pointer;
}

.recover-password-container {
  display: none;
  text-align: center;
  padding-top: 20px;
}

.recover-password-container input {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}

.recover-password-container button {
  padding: 20px;
  background: #28a745;
  color: white;
}

.register-container {
  display: none;
  text-align: center;
  padding-top: 20px;
}

.register-container input {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
  display: none;
}

.cookie-consent a {
  color: #2dc0da;
  text-decoration: none;
}

.accept-cookies-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.accept-cookies-btn:hover {
  background-color: #218838;
}

#privacy-policy {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 30px;

  text-align: justify;
  transition: bottom 0.3s ease-in-out;
  z-index: 10000;
  max-height: 100%;
  overflow-y: auto;
  display: none;
}

#privacy-policy.show {
  bottom: 0;
  overflow: auto;
  display: block;
}

@media (max-width: 600px) {
  .container {
    max-width: 320px;
    display: block;
    text-align: center;
    font-size: 12px;
  }

  .container p {
    font-size: 16px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .login-container {
    width: 320px;
  }
}