* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Colfax Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
}
main[ceots__auth="auth_main"] {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}
.auth__container {
  background: #fff;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 4px 4px 0px 0px #c3e6f5;
  padding: 2rem;
}
.auth__container .auth__header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth__container .auth__header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
}
.auth__container .auth__header p {
  font-size: 0.95rem;
  color: #c2c2c2;
  margin: 0;
}
.auth__container .auth__header .auth__service {
  font-size: 0.8rem;
  color: #96d4ee;
  margin-top: 0.5rem;
}
.form__group {
  margin-bottom: 1.25rem;
}
.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #333;
}
.form__group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.1s ease;
}
.form__group input:focus {
  border-color: #96d4ee;
  box-shadow: 0 0 0 2px rgba(150,212,238,0.2);
}
.form__group small {
  display: block;
  font-size: 0.75rem;
  color: #c2c2c2;
  margin-top: 0.25rem;
}
.form__forgot {
  text-align: right;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}
.form__forgot a {
  font-size: 0.85rem;
  color: #c2c2c2;
  text-decoration: none;
}
.form__forgot a:hover {
  color: #000;
  text-decoration: underline;
}
.form__error {
  background: rgba(220,53,69,0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.form__success {
  background: rgba(40,167,69,0.1);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
button[type="submit"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 2px 2px 0px 0px #a5daf0;
  transition: all 0.1s ease;
}
button[type="submit"]:hover {
  box-shadow: 4px 4px 0px 0px #a5daf0;
}
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}
.auth__footer p {
  font-size: 0.9rem;
  color: #c2c2c2;
  margin: 0;
}
.auth__footer p a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  margin-left: 0.25rem;
}
.auth__footer p a:hover {
  text-decoration: underline;
}
.auth__footer a.auth__signout {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #fff;
  color: #000;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 2px 2px 0px 0px #a5daf0;
  transition: all 0.1s ease;
}
.auth__footer a.auth__signout:hover {
  box-shadow: 4px 4px 0px 0px #a5daf0;
}
.auth__tabs {
  display: flex;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border-radius: 4px;
  padding: 4px;
}
.auth__tab {
  flex: 1;
  padding: 0.6rem 1rem;
  background: transparent;
  border: none;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.15s ease;
}
.auth__tab:hover {
  color: #333;
}
.auth__tab.active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.auth__back {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #c2c2c2;
  text-decoration: none;
}
.auth__back:hover {
  color: #000;
  text-decoration: underline;
}
.profile__info {
  margin-bottom: 2rem;
}
.profile__field {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.profile__field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c2c2c2;
}
.profile__field span {
  font-size: 0.9rem;
  color: #333;
}
h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #333;
}
