/* 🌟 Career Page Styling */
body {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    font-family: 'Arial', sans-serif;
    color: #333;
    padding-top: 20px;
}

/* 🎨 Centered Form with Glassmorphic Effect */
.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
}

/* 📝 Form Fields */
form label {
    font-weight: bold;
    margin-top: 10px;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}

/* 🌟 Focus Effect */
form input:focus, form textarea:focus, form select:focus {
    background: #FFF8E1;
    outline: none;
    transform: scale(1.02);
}

/* 🎨 Apply Button */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* 🖱️ Hover Effect */
button[type="submit"]:hover {
    background: linear-gradient(135deg, #FFA500, #FF4500);
    transform: scale(1.05);
}

/* ✅ Success Message */
#successMessage {
    display: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    background: #28a745;
    color: white;
}

/* 🎭 Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* 🌟 Centering the Logo */
.animated-logo {
  display: block;
  margin: 0 auto; /* Centers horizontally */
  max-width: 150px; /* Adjust size */
  animation: bounceIn 1.5s ease-in-out;
}

/* 🎭 Animation for Smooth Entrance */
@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  60% {
      opacity: 1;
      transform: scale(1.2);
  }
  100% {
      transform: scale(1);
  }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.animated-logo {
  animation: bounceIn 1.5s ease-in-out, pulse 3s infinite ease-in-out;
}
