/* body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #1e1e1e, #111);
  color: #fff;
} */
  select#country {
    background-color: #351219; 
     border: 1px solid #991b1b;
           /* Gray background */
    color: white;                  /* White text */
    padding: 10px;
  
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    appearance: none;              /* Remove default arrow styling */
  }

  /* Optional: Custom dropdown arrow */
  select#country::-ms-expand {
    display: none;
  }

  .form-group {
    margin-bottom: 15px;
  }
 
.containerContact {
  max-width: 500px;
  margin: 60px auto;
  background-color: #400A13;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

form h2 {
  text-align: center;
   
  color: #ff4d4d;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ddd;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: #351219;
  color: #fff;
  border: 1px solid #991b1b;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

button[type="submit"] {
  width: 100%;
  background-color: #b91c1c;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #dc2626;
}

/* Mobiscroll flag item styling */
.md-country-picker-item {
  display: flex;
  align-items: center;
}

.md-country-picker-flag {
  width: 24px;
  height: 16px;
  margin-right: 10px;
  border-radius: 2px;
  object-fit: cover;
}
