:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /*---- Colors ----*/
    --primary-color: #E88C9A;
    --secondary-color: #C8A96A;
    --accent: #1E88E5;
    --light-bg: #f8f5f2;
    --dark-navy: #071c33;
}
body{
    overflow-y: auto;
    background: var(--light-bg);
}

/* ===== MAIN WRAPPER ===== */
.v3-login-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ===== LEFT SIDE ===== */
.v3-login-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding:15px 60px 0px 60px;
}

.v3-login-box {
    width: 100%;
    max-width: 420px;
}


/* HEADING */
.v3-login-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #000;
}

.v3-login-box p {
    color: #6b6b8a;
    margin-bottom: 30px;
}

/* INPUT */
.v3-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    background: #FFF;
    font-size: 15px;
}

/* BUTTON */
.v3-login-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 7px;
    transition: .4s;
}
.v3-login-btn:hover{
    transform: translateY(-5px);
    background: var(--secondary-color);
    color: #000;
}

/* SOCIAL */
.v3-social {
    text-align: center;
    margin-top: 20px;
}
.v3-social-icons{
    margin-top: -15px;
}
.v3-social-icons i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    color: #000;
}

/* ===== RIGHT IMAGE ===== */
.v3-login-right {
    overflow: hidden;
    width: 50%;
    background: url('../img/aura-aesthetics-2.png')center/cover no-repeat;
}

.v3-logo {
    text-align: center;
    justify-content: center;
}

.logo-a {
    text-decoration: none;
}

.brand-logo {
    width: 80px;
    text-align: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.brand-name {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 32px;
    color: #0B2D4F;
}

.brand-name span {
    font-family: 'Poppins';
    color: var(--primary-color);
}


/* ===== MOBILE ===== */
@media(max-width:900px) {
    body{
        overflow-y: auto;
    }
    .v3-login-wrapper {
        flex-direction: column;
    }

    .v3-login-left {
        width: 100%;
        padding: 40px 20px;
    }

    .v3-login-right {
       display: none;
    }
}
@media (max-width:575px) {
    .v3-login-box h2{
        font-size: 27px;
    }
    
}
.v3-login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
    margin-bottom:15px;
    font-size:14px;
  }
  
  .v3-remember{
    display:flex;
    align-items:center;
    gap:6px;
    color:#666;
    cursor:pointer;
  }
  
  .v3-remember input{
    accent-color:#6A5ACD;
    width:15px;
    height:15px;
    cursor:pointer;
  }
  
  .v3-forgot{
    font-weight:500;
    transition:.3s;
    text-underline-offset: 2px;
  }
  
  .v3-forgot:hover{
    text-decoration: none;
  }