* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #ffffffcc;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.6s ease-out;
}

.logo {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  color: #ff5e57;
  margin-bottom: 10px;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.1);
}

.logo i {
  margin-right: 5px;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

.form label {
  display: block;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: #ff7e5f;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 126, 95, 0.5);
}

button {
  background: #ff7e5f;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

button:hover {
  background: #ff3e36;
  transform: scale(1.02);
}

/* Animation Keyframes */
@keyframes slideUp {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
