.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background-color: #001f3f;
  padding: 20px;
  box-sizing: border-box;
}

.form-box {
  background-color: rgba(0, 51, 102, 0.4);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
  margin-top: 20px;
}

.floating-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.floating-container input,
.floating-container textarea {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 1.1rem;
  width: 100%;
  resize: none;
}

.floating-container label {
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: #aaa;
  transition: 0.2s ease;
  pointer-events: none;
}

.floating-container input:focus + label,
.floating-container input:not(:placeholder-shown) + label,
.floating-container textarea:focus + label,
.floating-container textarea:not(:placeholder-shown) + label {
  top: -1rem;
  font-size: 0.8rem;
  color: #ccc;
}

.btn-action {
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  margin-right: 0.5rem;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20b358;
  color: white;
}

@media (max-width: 576px) {
  .form-box {
    padding: 2rem 1.5rem;
  }
}

h2 {
color: #ffff;
}