/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  color: #ffdb9b;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #ffdb9b;
  margin-bottom: 25px;
}

.input-section input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ffdb9b;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.input-section input:focus {
  border-color: #ffdb9b;
  outline: none;
}

.btn {
  padding: 12px 25px;
  background: #ffdb9b;
  color: #2c3e50;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 20px; /* Menambahkan jarak antara input dan tombol */
}

.btn:hover {
  background: #ffb47b;
  transform: scale(1.05);
}

.copy-btn {
  background: #ff7e5f;
}

.copy-btn:hover {
  background: #ff6f61;
}

.result-section {
  margin-top: 25px;
}

.result-section h2 {
  font-size: 22px;
  color: #ffdb9b;
  margin-bottom: 15px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  border: 2px solid #ffdb9b;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  resize: none;
  margin-bottom: 15px;
}

textarea:focus {
  border-color: #ffdb9b;
  outline: none;
}