/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Container */
.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

/* Header */
header h1 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

header h1 span {
  font-size: 2rem;
}

header p {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group label {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 5px;
  text-align: left;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  transform: scale(1.02);
  background: #fff;
}

button {
  padding: 12px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 79, 44, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
