/* Landing Hiring Page Styles */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

.container-fluid {
  max-width: 800px;
  margin: 6rem auto;
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-top: 20px;
  color: #03a4ed;
}

select,
input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

button {
  padding: 10px 20px;
  background-color: #ff695f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #ff4c47;
}

.header-img {
  border-radius: 50%;
}

/* Message styling */
.submission-message {
  display: none;
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

