@charset "UTF-8";
/* line 1, app/assets/stylesheets/registrations.scss */
.container {
  padding: 20px;
  border-radius: 5px;
}

/* line 6, app/assets/stylesheets/registrations.scss */
h2 {
  font-size: 24px;
  font-weight: bold;
}

/* line 11, app/assets/stylesheets/registrations.scss */
.form-group {
  margin-bottom: 20px;
}

/* line 15, app/assets/stylesheets/registrations.scss */
.form-control {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* line 22, app/assets/stylesheets/registrations.scss */
#year, #month, #day {
  text-align: center;
}

/* line 26, app/assets/stylesheets/registrations.scss */
input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
}

/* line 30, app/assets/stylesheets/registrations.scss */
.form-row {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  /* 年月日の間隔を狭くする */
}

/* line 36, app/assets/stylesheets/registrations.scss */
.col {
  flex: 0 0 auto;
  /* 各テキストボックスの右側の余白をなくす */
}

/* line 41, app/assets/stylesheets/registrations.scss */
.col input {
  width: 100%;
  /* 各テキストボックスを親要素にフィットさせる */
}

/* line 45, app/assets/stylesheets/registrations.scss */
label {
  font-weight: bold;
}

/* line 49, app/assets/stylesheets/registrations.scss */
.form-check-label {
  margin-left: 5px;
}

/* line 53, app/assets/stylesheets/registrations.scss */
.form-check-inline {
  margin-right: 20px;
}

/* line 57, app/assets/stylesheets/registrations.scss */
.btn-primary {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* line 66, app/assets/stylesheets/registrations.scss */
.btn-primary:hover {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
}

/* line 73, app/assets/stylesheets/registrations.scss */
.label-small-gray {
  color: gray;
  font-size: 12px;
}

/* line 78, app/assets/stylesheets/registrations.scss */
.is-invalid {
  background-color: #f8d7da;
  /* 背景色を赤く（エラー用） */
  border-color: #dc3545;
  /* 枠線の色も赤く */
}
