/* 반응형 웹을 위한 스타일 목록 */

.container {

  @media screen and (max-width: 1200px) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  @media screen and (max-width: 768px) {
    display: block;
  }
}

.left-side-bar {
  @media screen and (max-width: 1200px) {
    display: none;
  }
}

.main {
  @media screen and (max-width: 1200px) {

  }

  @media screen and (max-width: 768px) {
    min-width: 100vw;
    max-width: 100vw;
    border: none;
    border-radius: 0px;
    height: 100vh;
  }
}

.main-container {
  @media screen and (max-width: 768px) {
    /* 버튼 높이만큼 빼기 */
    min-height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }
}

.submit-button {
  @media screen and (max-width: 768px) {
    border-radius: 0px;
  }
}