@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Noto Sans KR', sans-serif;
}
.erorr{
	color: red;
    text-align: end;
    width: 300px;
    font-size: 12px;
}
.form-in{
	display: flex;
}
.small-label {
  font-size: 12px;
  width: 100px;
}
.login-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-top, .login-bottom {
  height: 50%;
  width: 100%;
}

.login-top {
/*   background: url('/assets/img/factory.jpg') no-repeat center center; */
  background-size: cover;
  background-color: #4169E1;
}

.login-bottom {
  background-color: #f9f9f9;
}

/* 중앙에 부유한 로그인 박스 */
.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  z-index: 10;
}

.login-box .auth-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.login-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: none;
  background-color: #eee;
  cursor: pointer;
  border-radius: 4px;
}

.tab.active {
  background-color: #007bff;
  color: white;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form label {
  margin-bottom: 1rem;
}

.login-btn {
  padding: 0.75rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-footer {
  margin-top: 1rem;
  text-align: center;
}

.login-footer a {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.admin-login-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.right-btn {
  padding: 0.5rem;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}