@charset "UTF-8";
/* =========================================
   Variables
   ========================================= */
/* =========================================
   Reset
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/* =========================================
   Main Layout
   ========================================= */
.main-container {
  display: flex;
  width: 100%;
  min-height: 100vh; }
  @media (max-width: 1024px) {
    .main-container {
      flex-direction: column; } }

/* =========================================
   Left Section (Visual)
   ========================================= */
.left-section {
  flex: 1.2;
  background: linear-gradient(135deg, #1A4239 0%, #234f3e 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 60px);
  min-height: 100vh; }
  .left-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay; }
  .left-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(197, 160, 101, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 175, 122, 0.15) 0%, transparent 50%);
    pointer-events: none; }
  @media (max-width: 1024px) {
    .left-section {
      flex: none;
      min-height: 30vh;
      padding: 40px 20px; } }
  @media (max-width: 480px) {
    .left-section {
      display: none; } }

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); }

.left-content {
  position: relative;
  z-index: 1;
  color: white;
  width: 100%;
  max-width: 600px; }

.quote-section {
  text-align: left;
  animation: fadeInLeft 1s ease-out 0.3s both; }
  @media (max-width: 768px) {
    .quote-section {
      text-align: center; } }

.quote-mark {
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 800;
  line-height: 0.8;
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px; }

.quote-text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }

.quote-author {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic; }

/* =========================================
   Right Section (Form)
   ========================================= */
.right-section {
  flex: 2;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto; }
  @media (max-width: 1024px) {
    .right-section {
      flex: none;
      width: 100%;
      padding: 40px 20px; } }

.register-container {
  width: 100%;
  max-width: 500px;
  animation: fadeInRight 1s ease-out both; }

/* =========================================
   Brand Section
   ========================================= */
.brand-section {
  text-align: center;
  margin-bottom: 40px; }

.logo-wrapper {
  margin-bottom: 16px; }

.main-logo {
  height: 60px;
  width: auto;
  object-fit: contain; }

.brand-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A4239;
  margin-bottom: 8px; }

.brand-subtitle {
  font-size: 16px;
  color: #6B7280;
  font-weight: 500; }

/* =========================================
   Form Section
   ========================================= */
.register-form-section {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #000; }

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px; }

.form-description {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 32px; }

/* =========================================
   Form Inputs
   ========================================= */
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.input-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  display: block; }
  .input-label.required::after {
    content: '*';
    color: #EF4444;
    margin-left: 4px; }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  color: #111827;
  transition: all 0.2s;
  font-family: inherit;
  background: #F9FAFB; }
  .form-input:focus {
    outline: none;
    border-color: #1A4239;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 66, 57, 0.1); }
  .form-input::placeholder {
    color: #9CA3AF; }
  .form-input#school {
    margin-bottom: 24px; }

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer; }
  .select-input#grade {
    margin-bottom: 24px; }

/* 비밀번호 입력 래퍼 */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center; }
  .password-input-wrapper .form-input {
    padding-right: 48px; }

.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: color 0.2s; }
  .password-toggle-btn:hover {
    color: #1A4239; }

.eye-icon {
  width: 20px;
  height: 20px; }

/* 아이디 중복확인 버튼 */
.input-with-button {
  display: flex;
  gap: 8px; }
  .input-with-button .form-input {
    flex: 1; }

.check-btn {
  padding: 12px 20px;
  background: #1A4239;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap; }
  .check-btn:hover {
    background: #234f3e;
    transform: translateY(-1px); }
  .check-btn:active {
    transform: translateY(0); }
  .check-btn.checked {
    background: #10B981;
    cursor: not-allowed; }

/* 입력 힌트 */
.input-hint {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px; }
  .input-hint.success {
    color: #10B981; }
  .input-hint.error {
    color: #EF4444; }

/* 라디오 버튼 그룹 */
.radio-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s; }
  .radio-label:hover {
    background: #F3F4F6; }
  .radio-label input[type="radio"] {
    display: none; }

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s; }
  input[type="radio"]:checked + .radio-custom {
    border-color: #1A4239; }
    input[type="radio"]:checked + .radio-custom::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      background: #1A4239;
      border-radius: 50%; }

.radio-text {
  font-size: 14px;
  color: #374151;
  font-weight: 500; }

/* =========================================
   Buttons
   ========================================= */
.button-group {
  margin-top: 32px; }

.submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1A4239 0%, #234f3e 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(26, 66, 57, 0.2); }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 66, 57, 0.3); }
  .submit-btn:active {
    transform: translateY(0); }
  .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none; }

/* =========================================
   Footer
   ========================================= */
.form-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #6B7280; }

.footer-link {
  color: #1A4239;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.2s; }
  .footer-link:hover {
    color: #234f3e;
    text-decoration: underline; }

/* =========================================
   Animations
   ========================================= */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
  .register-form-section {
    padding: 24px; }

  .form-title {
    font-size: 24px; }

  .radio-group {
    flex-direction: column;
    gap: 8px; }

  .input-with-button {
    flex-direction: column; }
    .input-with-button .form-input {
      width: 100%; }

  .check-btn {
    width: 100%; } }

/*# sourceMappingURL=register.css.map */
