/******************/
/* second_section */
.second_section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  height: 100%;
  /* background: rgba(0,0,0,.7); */
}
.second_section .background{
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.second_section article {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.second_section article{
  
}
.second_section article > img{ 
  flex: 1;
  max-width: 350px;
  padding: 20px;
}
.second_section article form {
  flex: 1;
}
.second_section article form > div{
  display: flex;
  flex-flow: column;
  margin: 0 auto;
  gap: 20px;
  max-width: 500px;
  padding: 20px;
  text-align: center;
  align-items: center;
}
.second_section article form > div textarea {
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  border-radius: 8px;
  background: none;
  color: var(--brand-fourth-color);
  border: 1px solid var(--brand-fourth-color);
  outline: none;
  box-sizing: border-box;
  resize: none; /* 사용자가 크기를 조절하지 못하게 함 */
}
.second_section article form > div img{
  max-width: 180px;
  width: 100%;
  margin: 0 auto
}
.second_section article form > div h3{
  margin-bottom: 20px;
  text-align: center;
  color: var(--brand-fourth-color);
  font-size: var(--font-h1-size);
  font-weight: var(--font-h2-weight);
  line-height: 120%;
  letter-spacing: -0.84px;
}
.second_section article form > div .inputs {
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: 100%;
}
.second_section article form > div input{
  width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  background: none;
  color: var(--brand-fourth-color);
  border: 1px solid var(--brand-fourth-color);
  outline: none;
}
.second_section article form > div input[type="submit"]{
  font-size: var(--font-h6-size);
  transition: all .25s;
}
.second_section article form > div input[type="submit"]:hover{
  background: var(--brand-fourth-color);
  color: var(--brand-first-color);
  font-weight: var(--font-h2-weight);
}
/* second_section */
/******************/

/* footer {
color: var(--brand-first-color);
} */

/* Responsive design adjustments */
@media (max-width: 768px) {
.second_section article {
  padding: 0;
}
}  