
.contact-page {
  padding: 60px 20px;
  background: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Dark mode support logic reuse */
body.light-mode .contact-container {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Assuming main style.css handles dark mode body bg by default, 
   but specific container overrides might be needed if they were hardcoded white */

/* If the site is dark mode by default (based on admin.css), 
   then contact-page background should probably be dark too?
   Let's check style.css conventions later to be perfect, 
   but for now let's adhere to the requested CSS.
*/

.contact-container h1 {
  color: #E50914; /* Brand Red */
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E50914;
}

.btn-submit {
  background: #E50914;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #c40812;
}

.success-message {
  background: #4CAF50;
  color: white;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
}

.hint {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.checkbox-label input {
    width: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    padding: 24px;
  }
}
