
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}
body {
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
header {
  background-color: #ff6b00;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 1s ease-out;
}
header h2{
  font-size: 20px;
}
header img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  animation: fadeInUp 1.2s ease-in-out;
}
h1 {
  color: #ff6b00;
  margin-bottom: 1rem;
}
form {
  display: grid;
  gap: 1rem;
}
input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.3);
  outline: none;
}
button {
  background-color: #ff6b00;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
  background-color: #e65a00;
  transform: scale(1.05);
}/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideDown {
from {
transform: translateY(-100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #fff8f0;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #ff6b00;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e65a00;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6b00 #fff8f0;
}
