@font-face {
  font-family: "Sahel";
  src: url("../font/sahel/Sahel-Light-FD.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Sahel", sans-serif;
}
.art-bg {
  background-image: url("/assets/img/favicon.png");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.art-bg::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.form-container {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}

.input-field {
  transition: all 0.3s ease;
  border-bottom: 2px solid #d1d5db;
}

.input-field:focus {
  border-bottom-color: #6366f1;
}

.btn-primary {
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #6366f1;
  border-bottom: 2px solid #6366f1;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #6b7280;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #d1d5db;
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.social-btn {
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
}
