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

/* Body and Container */
body {
  font-family: 'Nunito Sans', Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

main.container {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

/* Heading */
h1 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

/* Form Elements */
form .mb-3 {
  margin-bottom: 1.2rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  border-color: #ff5c5c;
  box-shadow: 0 0 0 0.2rem rgba(255,92,92,0.25);
  outline: none;
}

/* Button */
.btn-primary {
  background-color: #ff5c5c;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e85959;
  transform: translateY(-2px);
}

/* Status Messages */
#status {
  margin-top: 1rem;
  font-size: 0.95rem;
}

#status.success {
  color: green;
}

#status.error {
  color: red;
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

nav .nav-link {
  color: #333;
  font-weight: 600;
}

nav .nav-link:hover {
  color: #e85959;
}

nav .navbar-brand img {
  height: 40px;
}
