/* Styles from placements.html */
.page-hero {
      background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/slider/1.png');
      /* Reuse existing image */
      background-size: cover;
      background-position: center;
      color: white;
      padding: 6rem 0;
      text-align: center;
}

.placement-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
      padding: 4rem 0;
}

@media (min-width: 576px) {
      .placement-grid {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (min-width: 992px) {
      .placement-grid {
            grid-template-columns: repeat(4, 1fr);
      }
}

.placement-card {
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
}


.placement-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      border-color: #25408f;
}

.company-logo {
      height: 60px;
      width: 100px;
      margin-bottom: 1.5rem;
      object-fit: cover;
}

.job-header {
      margin-bottom: 1rem;
      width: 100%;
}

.job-role {
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
}

.package {
      color: #198754;
      /* Green for money */
      font-weight: 600;
      font-size: 1rem;
      background: rgba(25, 135, 84, 0.1);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      display: inline-block;
}

.apply-section {
      text-align: center;
      padding: 4rem 0;
      background: #f8f9fa;
      border-top: 1px solid #e5e7eb;
}

/* Styles from login.html */
.login-section {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      padding: 4rem 1rem;
}

.login-card {
      background: white;
      padding: 3rem;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 100%;
      text-align: center;
}

.login-icon {
      width: 80px;
      height: 80px;
      background: rgba(37, 64, 143, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: #25408f;
}

.form-control {
      padding: 0.8rem 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
}

#otp-section {
      display: none;
      margin-top: 1.5rem;
      border-top: 1px solid #eee;
      padding-top: 1.5rem;
      animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
      from {
            opacity: 0;
            transform: translateY(10px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

/* Applied Button State */
.btn-applied {
      background-color: #198754 !important; /* Green */
      border-color: #198754 !important;
      color: white !important;
}
.btn-applied:hover {
      background-color: #157347 !important;
      border-color: #146c43 !important;
}