/* static/css/auth.css */

/* 풀스크린 오버레이 */
#spinner-container-send-email {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column; /* 세로 정렬 */
  align-items: center;
  justify-content: center;

  background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
  z-index: 2000; /* 다른 요소 위에 표시 */
}

.hidden {
  display: none !important;
}

#spinner-container-send-email p {
  color: #fff;
  font-size: 1.2rem;
}
