/* Login Form Styles */
.portal-login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
}

.portal-login-title {
  text-align: center;
  color: #1c41fb;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: bold;
}

.portal-login-container form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.portal-login-container label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.portal-login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.portal-login-container input:focus {
  outline: none;
  border-color: #1c41fb;
  box-shadow: 0 0 5px rgba(28, 65, 251, 0.3);
}

.portal-login-container button {
  width: 100%;
  padding: 12px;
  background-color: #1c41fb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.portal-login-container button:hover {
  background-color: #0d2aa8;
}

.error-message {
  color: #d32f2f;
  background-color: #ffebee;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 14px;
}

.portal-container {
  margin: 50px auto;
  max-width: 1200px;
  padding: 40px 20px;
}

.portal-title {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  color: #1c41fb;
  margin-bottom: 60px;
}

.portal-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.portal-link {
  display: block;
  width: 100%;
  max-width: 800px;
  text-decoration: none;
  background: linear-gradient(135deg, #1c41fb 0%, #0d2aa8 100%);
  border-radius: 15px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 65, 251, 0.3);
  color: white;
}

.portal-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(28, 65, 251, 0.5);
  background: linear-gradient(135deg, #0d2aa8 0%, #1c41fb 100%);
}

.portal-link-content {
  text-align: center;
}

.portal-link-content h2 {
  font-size: 36px;
  margin: 0 0 15px 0;
  color: white;
  font-weight: bold;
}

.portal-link-content p {
  font-size: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .portal-container {
    margin: 30px auto;
    padding: 20px 15px;
  }

  .portal-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .portal-link {
    padding: 30px 20px;
  }

  .portal-link-content h2 {
    font-size: 28px;
  }

  .portal-link-content p {
    font-size: 18px;
  }
}

