
@font-face {
	font-family: 'LuvenneTitle';
	src: url('https://luvenne.netlify.app/fonts/Centaur-Font.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


:root{
  --cream:#f8f4e3;
  --gold:#cbb279;
  --silver:#b8b2a7;
  --soft:#d8c7a5;
  --brown:#6b5e55;

  --bg-dark:#000000;
  --bg-dark-2:#100b09;
  --bg-dark-3:#1b1411;

  --line:rgba(248,244,227,0.14);
  --panel:rgba(0,0,0,0.52);
  --panel-2:rgba(10,7,6,0.68);

  --input-bg:rgba(255,255,255,0.04);
  --input-border:rgba(248,244,227,0.12);
  --input-placeholder:rgba(248,244,227,0.36);

  --shadow:0 30px 80px rgba(0,0,0,0.45);

  --font-title: 'LuvenneTitle', serif;
--font-body: 'Raleway', sans-serif;


}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  min-height:100%;
}

body{
  font-family: var(--font-body);
  font-weight: 300;
  color:var(--cream);
  background-image:url("https://luvenne.netlify.app/imagens/fundo-login.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  overflow:hidden;
  position:relative;
}

.login-title{
  font-family: var(--font-title);
  font-size:30px;
  line-height:0.98;
  font-weight:400;
  letter-spacing:0.04em;
  color:var(--cream);
  margin-bottom:18px;
}

/* ÁREA EXTERNA = EMBAÇADA / ESCURA */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.22);
  backdrop-filter:blur(8px) brightness(0.72);
  -webkit-backdrop-filter:blur(8px) brightness(0.72);
  z-index:0;
}

/* VINHETA PARA DEIXAR MAIS SOFISTICADO */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.12) 78%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.26));
  z-index:0;
  pointer-events:none;
}

/* BOTÃO VOLTAR */
.back-link{
  position:fixed;
  top:18px;
  left:18px;
  z-index:20;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(248,244,227,0.10);
  background:rgba(0,0,0,0.30);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:var(--cream);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
}

.back-link:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(248,244,227,0.18);
}

/* ÁREA PRINCIPAL */
.login-page{
  position:relative;
  z-index:2;
  width:100%;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
}

/* CAIXA PRINCIPAL */
.login-shell{
  width:min(1120px, 100%);
  min-height:640px;
  display:grid;
  grid-template-columns: 1fr 430px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(248,244,227,0.14);
  background:rgba(7, 4, 3, 0.18);
  box-shadow:var(--shadow);
  position:relative;
}

/* LEVE BRILHO NA BORDA */
.login-shell::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* LADO ESQUERDO */
.login-left{
  position:relative;
  z-index:2;
  padding:42px 38px 34px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.68), rgba(0,0,0,0.78)),
    rgba(0,0,0,0.56);
  border-left:1px solid rgba(248,244,227,0.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* LOGO */
.login-brand-wrap{
  margin-bottom:22px;
}

.login-brand-logo{
  width:480px;
  max-width:100%;
  height:auto;
  display:block;
}

/* BADGE */
.login-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(203,178,121,0.16);
  border:1px solid rgba(203,178,121,0.16);
  color:#e7c984;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:18px;
}



.login-subtitle{
  max-width:360px;
  font-size:16px;
  line-height:1.75;
  color:rgba(248,244,227,0.72);
  margin-bottom:28px;
}

/* FORM */
.login-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.input-group label{
  font-size:14px;
  font-weight:700;
  color:rgba(248,244,227,0.84);
}

.input-group input{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  border-radius:14px;
  padding:0 18px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--input-border);
  color:var(--cream);
  font-size:15px;
  transition:.25s ease;
}

.input-group input::placeholder{
  color:var(--input-placeholder);
}

.input-group input:focus{
  border-color:rgba(203,178,121,0.42);
  box-shadow:0 0 0 4px rgba(203,178,121,0.08);
}

/* BOTÃO */
.login-button{
  margin-top:2px;
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:var(--cream);
  color:#19130f;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.login-button:hover{
  transform:translateY(-1px);
  background:#fffaf0;
}

/* MENSAGENS */
.login-message{
  display:block;
  min-height:24px;
  margin-top:12px;
  font-size:13px;
  font-weight:600;
}

.login-message.error{
  color:#ff9382;
}

.login-message.success{
  color:#b9efb3;
}

/* LINKS */
.login-links{
  margin-top:12px;
  text-align:center;
}

.login-links a{
  color:rgba(248,244,227,0.74);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.2s ease;
}

.login-links a:hover{
  color:var(--cream);
}

/* LADO DIREITO = ÁREA NÍTIDA / TRANSPARENTE */
.login-right{
  position:relative;
  z-index:1;
  min-height:100%;
  background-image:url("https://luvenne.netlify.app/imagens/fundo-login.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* CAMADA MUITO SUAVE PARA NÃO APAGAR A FOTO */
.login-right::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
  pointer-events:none;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .login-shell{
    width:min(94vw, 1120px);
    grid-template-columns:1fr;
    min-height:auto;
  }

  .login-right{
    display:none;
  }

  .login-left{
    border-right:none;
    min-height:auto;
    padding:34px 26px 28px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.82)),
      rgba(0,0,0,0.72);
  }

  .login-title{
    font-size:48px;
  }

  .login-subtitle{
    max-width:100%;
  }

  body::before{
    backdrop-filter:blur(10px) brightness(0.45);
    -webkit-backdrop-filter:blur(10px) brightness(0.45);
  }
}

@media (max-width: 640px){
  .login-page{
    padding:18px;
  }

  .back-link{
    top:14px;
    left:14px;
    padding:9px 13px;
    font-size:13px;
  }

  .login-shell{
    border-radius:24px;
  }

  .login-left{
    padding:28px 20px 24px;
  }

  .login-brand-logo{
    width:180px;
  }

  .login-badge{
    font-size:11px;
    padding:8px 12px;
    margin-bottom:14px;
  }

  .login-title{
    font-size:20px;
    line-height:1;
    margin-bottom:14px;
  }

  .login-subtitle{
    font-size:14px;
    line-height:1.65;
    margin-bottom:22px;
  }

  .input-group input,
  .login-button{
    height:54px;
    font-size:14px;
  }
}

/* ================================
   LOGIN MOBILE — TOPO CENTRALIZADO
================================ */

@media (max-width: 640px) {

  .login-brand-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .login-brand-logo {
    width: 230px;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .login-badge {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    text-align: center;
  }

  .login-title {
    text-align: center;
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: 0.04em;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .login-subtitle {
    text-align: center;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.6;
  }
}