/*!*************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./src/app/Certificates/BirthCertificateForm/birth.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************/
.container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.birth-form {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 70vw;
  border:1px solid rgb(255, 255, 255)
}
 
.form-section {
  display: flex;
  flex-direction: column;
  width: 48%;
}
 
.form-section label {
  margin-bottom: 5px;
  font-weight: bold;
}
 
.form-section input[type="text"],
.form-section input[type="date"],
.form-section input[type="file"] {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #808080;
}
 
.form-section input[type="radio"],
.form-section input[type="checkbox"] {
  margin: 0px 6px 6px 6px;
  width: 20px;
  height: 20px;
}
 
@media (max-width: 768px) {
  .form-section {
    width: 100%;
   
  }
}
 
.bg-slate-300 {
  background-color:#f2f4f7;
}
