@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
* {
  font-family: "Pretendard Variable", Pretendard !important;
}
/********* Fonts Face CSS End **********/

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  outline: 0;
  background: #4b6cb3;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  transition: 0.3s;
  background: #092e7e;
}
.form .message {
  margin: 0px 0px 20px 0px;
  color: #7a7a7a;
  font-size: 20px;
  font-weight: 300;
}
.file-table .message{
  margin: 0px 0px 20px -10px;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.logo img{
  width: 60%;
  object-fit: cover;
  margin-top: 10px;
}
.guest_login_p{
  margin-top: 15px;
  color: #7a7a7a;
  font-weight: 500;
  font-size: 13px;
  word-spacing: -2px;
  text-align: center;
}
.guest_login_p:hover{
  color: #092e7e;
  font-weight: 700;
  cursor: pointer;
}
.guest-login-form{
  display: none;
}
body {
  background: linear-gradient(-45deg, #ee7752, #ee9cbc, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* 전체 컨테이너 스타일 */
.form-container {
  display: flex;
  justify-content: space-between; /* 폼과 파일 테이블을 오른쪽으로 정렬 */
  align-items: flex-start; /* 위쪽 정렬 */
  width: 1000px;
  margin: 0px 0px 0px -270px;
}

/* 폼 스타일 */
.form {
  flex: 1; /* 남은 공간을 모두 차지하도록 설정 */
  background: #FFFFFF;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  max-width: 270px;
}

/* 파일 테이블 스타일 */
.file-table {
  flex: 1; /* 남은 공간을 모두 차지하도록 설정 */
  background: #FFFFFF;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.file-table table {
  width: 100%;
  border-collapse: collapse;
}

.file-table th, .file-table td {
  padding: 10px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.file-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.file-table td a {
  text-decoration: none;
  color: #0078d4; /* 링크 색상을 원하는 색상으로 변경하세요 */
}

.file-table td a:hover {
  text-decoration: underline;
}


@media (max-width: 900px) {
  .form-container {
    flex-direction: column; /* 화면이 작아지면 컨테이너를 세로로 배치 */
    width: 100%;
    margin: 0px 0px 0px 0px;
  }

  .form {
    max-width: 100%;
    margin-bottom: 20px;
  }
}