* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f0ebe0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 480px;
}

.header {
  text-align: center;
  margin-bottom: 24px;
}

.header h1 {
  font-size: 22px;
  color: #4a2c0a;
  margin-bottom: 8px;
}

.header p {
  font-size: 14px;
  color: #8b7355;
}

.auth-box {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 2px solid #f0ebe0;
}

.tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-size: 15px;
  cursor: pointer;
  color: #8b7355;
  font-weight: 500;
}

.tab.active {
  color: #4a2c0a;
  border-bottom: 2px solid #b85c2a;
  margin-bottom: -2px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #4a2c0a;
  margin-bottom: 6px;
  margin-top: 16px;
}

select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 4px;
  outline: none;
  background: white;
  cursor: pointer;
}

select:focus {
  border-color: #b85c2a;
}

.match-card {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #b85c2a;
}

.match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.match-type {
  font-size: 12px;
  font-weight: 600;
  color: #b85c2a;
  background: #f5efe0;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.match-amount {
  font-size: 15px;
  font-weight: 600;
  color: #4a2c0a;
}

.match-name {
  font-size: 17px;
  font-weight: 600;
  color: #4a2c0a;
  margin-bottom: 8px;
}

.match-desc {
  font-size: 14px;
  color: #8b7355;
  margin-bottom: 16px;
  line-height: 1.5;
}

.match-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.match-deadline {
  font-size: 13px;
  color: #8b7355;
}

.btn-apply {
  padding: 8px 20px;
  background: #4a2c0a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-apply:hover {
  background: #b85c2a;
}

.hidden {
  display: none;
}



