
/* =========================================
   LUXURY AUTH
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;

    background:#f7f2eb;

    min-height:100vh;

    overflow-x:hidden;
    overflow-y:auto;
}

/* WRAPPER */


.lux-auth-wrapper{
    display:grid;

    grid-template-columns:
        .92fr 1fr;

    min-height:100vh;

    padding:16px;

    gap:16px;
}


/* =========================================
   LEFT
========================================= */

.lux-auth-left{
    position:relative;

    overflow:hidden;

    border-radius:28px;
}

.lux-auth-left img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.auth-overlay{
    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(33,20,12,.68),
            rgba(80,48,25,.38)
        );

    z-index:1;
}

/* CONTENT */

.auth-content{
    position:absolute;

    left:50px;
    bottom:150px;

    z-index:2;

    max-width:430px;

    color:#fff;
}

.auth-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    font-size:11px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.auth-content h1{
    font-size:54px;

    line-height:1.02;

    margin-bottom:18px;

    font-family:'Playfair Display', serif;
}

.auth-content p{
    font-size:16px;

    line-height:1.7;

    color:#f1e7de;
}

/* =========================================
   RIGHT
========================================= */

.lux-auth-right{
    display:flex;

    align-items:center;
    justify-content:center;

    padding:12px 22px;
}

/* CARD */

.lux-auth-card{
    width:100%;
    max-width:540px;

    background:#fff;

    border-radius:28px;

    padding:36px 40px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.05);
}

/* LOGO */

.auth-logo-wrap{
    text-align:center;

    margin-bottom:28px;
}

.auth-logo{
    width:72px;

    margin-bottom:14px;
}

.auth-logo-wrap h2{
    font-size:32px;

    color:#7B4F2C;

    font-family:'Playfair Display', serif;

    margin-bottom:4px;
}

.auth-logo-wrap span{
    font-size:11px;

    color:#b08968;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* HEADING */

.auth-heading{
    text-align:center;

    margin-bottom:28px;
}

.auth-heading h3{
    font-size:30px;

    color:#2f1d11;

    margin-bottom:8px;

    font-family:'Playfair Display', serif;
}

.auth-heading p{
    color:#8b7768;

    font-size:14px;
}

/* INPUT */

.lux-input-group{
    margin-bottom:20px;
}

.lux-input-group label{
    display:block;

    margin-bottom:8px;

    font-size:13px;

    color:#7B4F2C;

    font-weight:500;
}

.lux-input-group input{
    width:100%;
    height:56px;

    border:
        1px solid #e8ddd2;

    border-radius:16px;

    padding:0 18px;

    font-size:15px;

    background:#faf7f3;

    transition:.25s;
}

.lux-input-group input:focus{
    outline:none;

    border-color:#8B5A2B;

    background:#fff;

    box-shadow:
        0 0 0 4px rgba(139,90,43,.08);
}

/* BUTTON */

.lux-auth-btn{
    width:100%;
    height:56px;

    border:none;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #8B5A2B,
            #6d4523
        );

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.25s;
}

.lux-auth-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 24px rgba(139,90,43,.22);
}

/* FOOTER */

.auth-footer-text{
    margin-top:22px;

    text-align:center;

    color:#a28774;

    font-size:13px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    body{
        overflow:auto;
    }

    .lux-auth-wrapper{
        grid-template-columns:1fr;

        height:auto;

        padding:18px;
    }

    .lux-auth-left{
        display:none;
    }

    .lux-auth-right{
        padding:0;
    }

    .lux-auth-card{
        max-width:100%;

        padding:34px 24px;
    }

}

@media(max-width:600px){

    .auth-heading h3{
        font-size:26px;
    }

    .auth-content h1{
        font-size:42px;
    }

    .lux-auth-card{
        border-radius:24px;
    }

}


/* =========================================
   LUXURY COMPLETE PROFILE
========================================= */

.luxury-profile-page{
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:50px 20px;

  background:
  linear-gradient(
    135deg,
    #f6efe7,
    #efe3d4
  );

  position:relative;

  overflow:hidden;
}

/* OVERLAY */

.profile-bg-overlay{
  position:absolute;

  inset:0;

  background:

  radial-gradient(
    circle at top right,
    rgba(160,107,59,.12),
    transparent 35%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(123,79,44,.10),
    transparent 35%
  );
}

/* CARD */

.luxury-profile-card{
  position:relative;

  z-index:2;

  width:100%;
  max-width:1050px;

  background:
  rgba(255,255,255,.78);

  backdrop-filter:blur(18px);

  border-radius:32px;

  overflow:hidden;

  display:grid;

  grid-template-columns:
  1fr 1fr;

  box-shadow:
  0 30px 70px rgba(0,0,0,.10);
}

/* LEFT */

.profile-left{
  padding:70px 60px;

  background:
  linear-gradient(
    135deg,
    #7B4F2C,
    #a06b3b
  );

  color:#fff;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.profile-badge{
  display:inline-flex;

  align-items:center;

  width:max-content;

  padding:10px 18px;

  border-radius:999px;

  background:
  rgba(255,255,255,.12);

  font-size:12px;

  letter-spacing:1px;

  text-transform:uppercase;

  margin-bottom:28px;
}

.profile-left h2{
  font-size:52px;

  line-height:1.08;

  margin-bottom:22px;

  font-family:
  'Playfair Display',
  serif;
}

.profile-left p{
  font-size:17px;

  line-height:1.8;

  color:#f5ebe1;
}

/* DIVIDER */

.profile-divider{
  display:flex;
  align-items:center;

  gap:12px;

  margin-top:36px;
}

.profile-divider span{
  flex:1;

  height:1px;

  background:
  rgba(255,255,255,.28);
}

.profile-divider i{
  color:#f2d1aa;
}

/* RIGHT */

.profile-right{
  padding:70px 60px;

  background:#fff;
}

/* FORM */

.luxury-profile-form{
  display:flex;
  flex-direction:column;

  gap:24px;
}

/* INPUT GROUP */

.input-group-luxury{
  display:flex;
  flex-direction:column;

  gap:10px;
}

.input-group-luxury label{
  font-size:14px;

  font-weight:600;

  color:#6b3f1d;
}

/* INPUTS */

.input-group-luxury input,
.input-group-luxury textarea{
  width:100%;

  border:none;

  background:#f8f4ef;

  border-radius:18px;

  padding:18px 20px;

  font-size:15px;

  color:#5a3720;

  transition:.25s ease;
}

.input-group-luxury textarea{
  min-height:120px;

  resize:none;
}

.input-group-luxury input:focus,
.input-group-luxury textarea:focus{
  outline:none;

  background:#fff;

  box-shadow:
  0 0 0 3px rgba(160,107,59,.15);
}

/* BUTTON */

.btn-save-profile{
  margin-top:10px;

  height:58px;

  border:none;

  border-radius:18px;

  background:
  linear-gradient(
    135deg,
    #7B4F2C,
    #a06b3b
  );

  color:#fff;

  font-size:16px;

  font-weight:600;

  letter-spacing:.3px;

  transition:.3s ease;

  box-shadow:
  0 15px 35px rgba(123,79,44,.22);

  cursor:pointer;
}

.btn-save-profile:hover{
  transform:
  translateY(-2px);

  box-shadow:
  0 22px 40px rgba(123,79,44,.28);
}

/* MOBILE */

@media(max-width:900px){

  .luxury-profile-card{

    grid-template-columns:
    1fr;
  }

  .profile-left,
  .profile-right{

    padding:50px 28px;
  }

  .profile-left h2{
    font-size:38px;
  }

}

@media(max-width:768px){

    .lux-auth-wrapper{

        min-height:100dvh;

        padding:12px;
    }

    .lux-auth-card{

        min-height:calc(100dvh - 24px);

        display:flex;

        flex-direction:column;

        justify-content:center;

        padding:28px 22px;
    }

}

@media(max-width:768px){

    .auth-logo{

        width:60px;
    }

    .auth-logo-wrap{

        margin-bottom:22px;
    }

    .auth-logo-wrap h2{

        font-size:28px;
    }

}

@media(max-width:768px){

    .lux-input-group input{

        height:58px;

        font-size:16px;
    }

    .lux-auth-btn{

        height:58px;

        font-size:16px;
    }

}

@media(max-width:768px){

    .lux-auth-left{

        display:block;

        height:180px;

        border-radius:22px;

        margin-bottom:16px;
    }

    .auth-content{

        left:20px;

        bottom:20px;

        max-width:220px;
    }

    .auth-content h1{

        font-size:24px;
    }

    .auth-content p{

        display:none;
    }

}

@media(max-width:768px){

    body{

        padding-bottom:
        env(safe-area-inset-bottom);
    }
}


