* {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* Fonte principal para título e textos */
body.login-page {
  background-color: #f8f9fa;
}

/* -------------------- COLUNA ESQUERDA -------------------- */
.cadeira-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #111 0%, #222 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cadeira-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.restrito-img {
  max-width: 320px;
  width: 80%;
  opacity: 0;
  transform: translateY(200px) scaleX(1);
  transition: transform 1s ease, opacity 1s ease;
  position: relative;
  z-index: 2;
  position: relative;
  left: 25%; 
  top: 20%; 

}

.restrito-img.show {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

/* Blur embaixo da cadeira */
.cadeira-blur {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateY(50px) translateX(-50%);
  width: 60%;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(10px);
  border-radius: 50%;
  z-index: 1;
}

/* Overlay com marca da barbearia */
.brand-overlay {
  position: absolute;
  top: 5%;
  left: 5%;
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 1s ease, opacity 1s ease;
  z-index: 3;
}

.brand-overlay.show {
  opacity: 1;
  transform: translateY(0);
}

.brand-title {
  font-size: 3rem;
  margin: 0;
}

.brand-subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.brand-divider {
  width: 50px;
  height: 3px;
  background: #c89e6a;
  margin: 10px 0;
}

.brand-description {
  font-size: 1rem;
  font-weight: 300;
}

.arrow-left {
  top: 20px;
  left: 20px;
  width: 30px;
  transition: transform 0.3s;
}
/* -------------------- COLUNA DIREITA (LOGIN) -------------------- */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c19a6b;
}

.login-wrapper {
  width: 100%;
  max-width: 380px;
}

.login-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.login-card.show {
  opacity: 1;
  transform: translateY(0);
}

.logo-container {
  text-align: center;
  margin-bottom: 15px;

}

.logo {
  width: 80px;
  height: auto;
  border-radius: 30%;
}

.login-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.login-subtitle {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

/* Campos de formulário */
.form-group {
  margin-bottom: 20px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #999;
}

.form-input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #c19a6b;
  outline: none;
}

/* Botão login */
.btn-login {
  width: 100%;
  background: #c19a6b;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-login:hover {
  background: #a67c52;
}

/* Footer */
.login-footer {
  margin-top: 20px;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #aaa;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
  margin-right: 0.75em;
}
.divider:not(:empty)::after {
  margin-left: 0.75em;
}

/* Botão criar conta */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c19a6b;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.btn-register:hover {
  color: #a67c52;
}
