body, html {
  font-family: 'Satoshi', 'Inter', Arial, sans-serif !important;
  background: #f6f7fa;
  margin: 0;
  padding: 0;
}
.auth-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}
.auth-logo {
  width: 160px;
  margin: auto auto auto auto;
  display: block;
}
.auth-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 28px rgba(31,41,55,0.11);
  padding: 42px 44px 44px 44px;
  min-width: 340px;
  max-width: 400px;
  text-align: center;
}
.auth-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  gap: 24px;
}
.auth-tab {
  font-size: 1.3rem;
  font-weight: 600;
  color: #979797;
  cursor: pointer;
  padding-bottom: 7px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom 0.14s;
}
.auth-tab.active {
  color: #000000;
  border-bottom: 3px solid #ff764a;
}
.role-selector {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 25px;
}
.role-selector label {
  border-radius: 18px;
  font-weight: 400;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border 0.18s, color 0.18s;
}
.role-selector input[type="radio"] {
  accent-color: #ff764a;
  margin-right: 9px;
  width: 18px;
  height: 18px;
}
.role-selector input[type="radio"]:focus + span {
  outline: 2px solid #ff764a;
}
.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.auth-fields input {
  border-radius: 12px;
  border: 1.3px solid #ececec;
  padding: 13px 15px;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border 0.16s;
}
.auth-fields input:focus {
  border-color: #ff764a;
  outline: none;
}
.auth-btn {
  border: none;
  border-radius: 13px;
  background: #ff764a;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 0;
  font-weight: 700;
  margin-top: 5px;
  cursor: pointer;
  transition: background 0.16s;
}
.auth-btn:hover {
  background: #ff5200;
}
.auth-google-btn {
  border: none;
  border-radius: 12px;
  background: #f8f9fb;
  color: #222;
  font-size: 1.09rem;
  padding: 13px 0;
  font-weight: 500;
  margin-top: 6px;
  cursor: pointer;
  border: 1.5px solid #ededed;
  transition: border 0.15s, color 0.15s;
}
.auth-google-btn:hover {
  border-color: #ff764a;
  color: #ff764a;
}
.auth-divider {
  display: flex;
  align-items: center;
  margin: 18px 0 7px 0;
  gap: 18px;
}
.auth-divider span {
  font-size: 1rem;
  color: #b3b3b3;
}
.auth-divider:before,
.auth-divider:after {
  content: '';
  flex: 1;
  height: 1.3px;
  background: #efefef;
}
.auth-switch {
  margin-top: 11px;
  color: #444;
  font-size: 1.07rem;
}
.auth-switch a {
  color: #ff764a;
  text-decoration: none;
  font-weight: 600;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.auth-footer {
  margin-top: 28px;
  color: #bbb;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 500px) {
  .auth-card {
    padding: 18px 5vw 26px 5vw;
    min-width: 95vw;
    max-width: 98vw;
  }
  .auth-logo {
    width: 125px;
  }
}
