/* 로그인 화면 전용 스타일 */
.login-body {
  background: #f5f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: fadeIn 0.5s ease;
}

.login-logo-box {
  text-align: center;
  margin-bottom: 22px;
}

.login-logo-box img {
  height: 65px;
  margin-bottom: 10px;
}

.login-logo-box h2 {
  font-size: 22px;
  font-weight: 700;
}

.login-sub {
  font-size: 13px;
  color: #6b7280;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  font-size: 14px;
}

.login-form input:focus {
  outline: none;
  border-color: #1f6feb;
}

.login-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

/* 로그인 버튼 */
.login-btn {
  width: 100%;
  padding: 12px 0;
  background: #1f6feb;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(31, 111, 235, 0.25);
}

.login-btn:hover {
  background: #1859d6;
  transform: translateY(-2px);
}

/* 회원가입 화면 */
.register-body {
  background: #f5f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.register-container {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}

.register-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: fadeIn 0.5s ease;
}

.sigregisternup-logo-box {
  text-align: center;
  margin-bottom: 22px;
}

.register-logo-box img {
  height: 65px;
  margin-bottom: 10px;
}

.register-logo-box h2 {
  font-size: 22px;
  font-weight: 700;
}

.register-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: -10px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.register-form input,
.register-select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  font-size: 14px;
}

.register-select:focus,
.register-form input:focus {
  outline: none;
  border-color: #1f6feb;
}

/* 회원가입 버튼 */
.register-btn {
  width: 100%;
  padding: 12px 0;
  background: #1f6feb;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
}

.register-btn:hover {
  background: #1859d6;
  transform: translateY(-2px);
}

.register-links {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
}

/* 반 + 번호 한 줄 배치 */
.register-row {
    display: flex;
    gap: 10px;
}

/* 반/번호 select 공통 스타일 */
.register-select-half {
    width: 107.5px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    font-size: 14px;
}

.register-select-half:focus {
    outline: none;
    border-color: #1f6feb;
}
