html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.responsive-img {
    max-width: 70%; /* 부모 요소의 50% 크기 */
    height: auto; /* 원본 비율 유지 */
}
.btn-outline-info {
    --bs-btn-color: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0dcaf0;
    --bs-btn-hover-border-color: #0dcaf0;
    --bs-btn-focus-shadow-rgb: 13,202,240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0dcaf0;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}
.btn-outline-success {
    --bs-btn-color: #03c75a;
    --bs-btn-border-color: #03c75a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #03c854;
    --bs-btn-hover-border-color: #03c854;
    --bs-btn-focus-shadow-rgb: 25,135,84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #198754;
    --bs-btn-active-border-color: #198754;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #198754;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #198754;
    --bs-gradient: none;
}

.btn-outline-warning {
    --bs-btn-color: #FEE500;
    --bs-btn-border-color: #FEE500;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #fee500;
    --bs-btn-hover-border-color: #FEE500;
    --bs-btn-focus-shadow-rgb: 255,193,7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc107;
    --bs-btn-active-border-color: #ffc107;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc107;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc107;
    --bs-gradient: none;
}

/* 공통 버튼 스타일 */
.btn {
    margin-bottom: 5px; /* 버튼 간의 아래쪽 간격 */
}

/* 아이콘 컨테이너 */
.icon-container {
    flex-shrink: 0; /* 아이콘 크기 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 아이콘 크기 조정 */
.icon-container img {
    height: 24px; /* 아이콘 크기 조정 */
    width: 24px; /* 아이콘 크기 조정 */
}

/* 텍스트 컨테이너 */
.text-container {
    flex-grow: 1; /* 텍스트 영역 확장 */
    text-align: center; /* 텍스트 중앙 정렬 */
    font-size: 16px; /* 텍스트 크기 */
}