/* Police Playfair + Display */

.titre-serif {
  font-family: "Playfair Display", serif;  
}

.auth-page { 
  min-height: 100vh; 
}

.auth-wrapper{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-left{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 48px 24px;
  background: #f7f7f7;
}

/* bouton google microsoft */

.oauth-buttons { 
    margin: 10px 0 16px; 
}

.oauth-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:95%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:600;
  margin-bottom: 2%;
}

.oauth-btn:hover{ 
    background:#f7f7f7; 
}

.oauth-icon{ 
    width:30px; 
    height:30px;
}

.oauth-sep{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 20px 0;
  color:#999;
  font-size:12px;
}
.oauth-sep::before,
.oauth-sep::after{
  content:"";
  height:1px;
  background:#e5e7eb;
  flex:1;
}

/* ////////////////////////////////// */

.auth-card{
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.auth-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}
.auth-logo{ 
    font-size: 35px; 
    color:#f5b301; 
}

.auth-name{ 
    font-weight: 1000; 
    font-size: 50px; 
}

.auth-title{
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  color:#111;
}

.auth-label{ 
    display:block; 
    font-size: 15px; 
    margin: 14px 0 6px; 
    color:#333; 
}

.auth-input{
  width: 95%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}
.auth-input:focus{ 
    border-color:#f5b301; 
    box-shadow: 0 0 0 3px rgba(245,179,1,.2); 
}

.auth-row{ 
    margin: 12px 0 18px; 
}

.auth-checkbox{ 
    display:flex; 
    align-items:center; 
    gap:10px; 
    font-size: 13px; 
    color:#333; 
}

.auth-btn{
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background:#0d6efd;
  color:#fff;
  font-weight: 700;
}

.auth-links{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  gap:10px;
  font-size: 15px;
}
.auth-link{ 
    color:#444; 
    text-decoration:none; 
}

.auth-link:hover{ 
    text-decoration: underline; 
}

.auth-sep{ 
    color:#bbb; 
}

.auth-alert{
  background: #fff3f3;
  border: 1px solid #ffcccc;
  color:#b00020;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.auth-footer{
  margin-top: 18px;
  font-size: 11px;
  color:#999;
  text-align:center;
}

.auth-right{
  background: #85b1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-hero{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-image{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* responsive */
@media (max-width: 992px){
  .auth-wrapper{ 
    grid-template-columns: 1fr; 
}
  .auth-right{ 
    display:none; 
}
}