body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #00b8e6, #0077b6);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #333;
}

.register-container {
  width: 350px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 100px auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.register-container h2 {
  animation: fadeInUp 1s ease;
}

.register-container h2 span {
  color: #00b8e6;
}
.register-container form {
  animation: fadeInUp 1.2s ease;
}
.register-text,
.back-home {
  animation: fadeInUp 1.4s ease;
}
.form-group {
  text-align: left;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #0077b6;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #00b8e6;
}

.btn-register {
  background-color: #00b8e6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-register:hover {
  background-color: #009fd4;
  transform: scale(1.05);
}

.login-text {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.login-text a {
  color: #00b8e6;
  text-decoration: none;
  font-weight: 600;
}

.login-text a:hover {
  text-decoration: underline;
}
.back-home {
  margin-top: 15px;
}

.back-home a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.back-home a:hover {
  text-decoration: underline;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
