/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.entry-container {
  font-family: "Arial", sans-serif;
  background-color: white;
  color: #333;
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 100vh;
}

/* Main Container */
.main-container {
  width: 90%;
  max-width: 600px;
  background: #ffffff;
  padding: 20px 30px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
}

.header p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Form Container */
.form-container form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.form-container form input,
.form-container form select,
.form-container form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.form-container form textarea {
  resize: none;
}

.form-container button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #0056b3;
}

.alert {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-size: 1rem;
}

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

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

.fade-out {
  animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15rem;
  display: none !important;  /* Hidden initially */
}