* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 380px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.main-header {
  background: #003256;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  height: 64px;
  width: auto;
}

.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 40px 36px;
}

.toggle-wrapper {
  display: flex;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 36px;
}

.toggle-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: #888;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: #003256;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 50, 86, 0.3);
}

.form-title {
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  color: #666;
  font-size: 13px;
  margin-bottom: 7px;
  letter-spacing: 0.4px;
}

input {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  color: #1a1a1a;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

input::placeholder {
  color: #b0b0b0;
}

input:focus {
  border-color: #003256;
  background: #f5f8fc;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: #b0b0b0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: not-allowed;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn.enabled {
  background: #003256;
  cursor: pointer;
}

.submit-btn.enabled:hover {
  background: #00243d;
}

.submit-btn.enabled:active {
  transform: scale(0.98);
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}
