:root{

--navy:#16284f;
--blue:#2f5195;
--sky:#58a7d7;
--pink:#ed86b5;
--lightPink:#fde8f2;
--lightBlue:#eef7ff;
--white:#ffffff;
--text:#1e2942;
--muted:#6d7890;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Poppins",sans-serif;
}

body{

background:
    radial-gradient(circle at 0% 18%, rgba(237,134,181,.32), transparent 20%),
    radial-gradient(circle at 42% 84%, rgba(88,167,215,.26), transparent 24%),
    linear-gradient(90deg,#fff7fb 0%, #fefcff 28%, #fbfcff 54%, #ffffff 78%, #ffffff 100%);
overflow:hidden;

}

.login-page{

    display:grid;
    grid-template-columns:1fr 1fr;

    min-height:100vh;

    background:transparent;

}

.left-panel{

position:relative;
overflow:hidden;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

background:transparent;

} 


.right-panel{

display:flex;
justify-content:center;
align-items:center;

background:transparent;

}


.gradient-blob{

position:absolute;
border-radius:50%;
filter:blur(60px);
opacity:.45;

animation:float 8s ease-in-out infinite;

}

.blob1{

width:350px;
height:350px;

background:#ed86b5;

top:-100px;
left:-100px;

}

.blob2{

width:420px;
height:420px;

background:#58a7d7;

bottom:-180px;
right:-100px;

animation-delay:2s;

}

@keyframes float{

50%{

transform:
translateY(-25px)
translateX(20px);

}

}

.brand{

position:relative;
z-index:2;

text-align:center;

max-width:540px;

padding:40px;

}

.logo{

width:190px;

margin-bottom:25px;

}

.brand h1{

font-size:64px;

font-weight:800;

color:var(--navy);

letter-spacing:-2px;

}

.brand h3{

margin-top:15px;

font-weight:600;

color:var(--blue);

font-size:23px;

line-height:1.5;

}

.brand p{

margin-top:22px;

font-size:15px;

line-height:1.2;

color:var(--muted);

}

.lumi{

    position:absolute;

    bottom:28px;
    right:34px;

    z-index:2;

    animation:floatBot 5s ease-in-out infinite;

}

.lumi img{

    width:132px;

    transform:rotate(10deg);

    filter:
        drop-shadow(0 15px 25px rgba(22,40,79,.18));

    user-select:none;
    pointer-events:none;

}

@keyframes floatBot{

50%{

transform:translateY(-18px);

}

}

.auth-card{

    background:#fff;

    border-radius:32px;
    width:min(92%,460px);
    padding:28px;

    box-shadow:
        0 25px 70px rgba(30,40,80,.08);

}

.tabs{

display:flex;

margin-bottom:35px;

background:#f4f6fb;

border-radius:14px;

padding:6px;

}

.tab{

flex:1;

padding:14px;

border:none;

background:none;

font-weight:700;

font-size:15px;

cursor:pointer;

border-radius:10px;

transition:.25s;

}

.tab.active{

background:white;

color:var(--navy);

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

form{

display:flex;

flex-direction:column;

gap:18px;

}

.onboarding-form{

display:flex;

flex-direction:column;

gap:18px;

}

.onboarding-copy h2{

font-size:28px;
color:var(--navy);
margin-bottom:8px;

}

.onboarding-copy p{

color:var(--muted);
font-size:14px;
line-height:1.5;

}

.field-label{

font-size:14px;
font-weight:600;
color:var(--navy);

}

.onboarding-form select {
    width: 100%;
    padding: 15px 16px;

    border: 1px solid #dfe5ef;
    border-radius: 12px;

    background: #fff;
    color: var(--navy);

    font-family: "Poppins", sans-serif;
    font-size: 14px;

    outline: none;
    cursor: pointer;

    transition: .25s;
}

.onboarding-form select:focus {
    border-color: var(--pink);

    box-shadow:
        0 0 0 4px rgba(237, 134, 181, .15);
}

.preference-head{

display:flex;
justify-content:space-between;
align-items:center;
gap:16px;
font-size:14px;
color:var(--navy);

}

.preference-head span{

color:var(--muted);

}

.preference-grid{

display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;

}

.preference-card{

min-height:74px;
padding:14px 16px;
border:1px solid #dfe5ef;
border-radius:18px;
background:#fff;
color:var(--text);
font-size:14px;
font-weight:600;
text-align:left;
cursor:pointer;
transition:.2s;

}

.preference-card:hover{

border-color:#a5b7db;
transform:translateY(-1px);

}

.preference-card.active{

background:linear-gradient(135deg,#fef0f7,#eef7ff);
border-color:var(--blue);
box-shadow:0 12px 24px rgba(47,81,149,.08);
color:var(--navy);

}

input{

height:56px;

padding:0 18px;

border-radius:14px;

border:1px solid #dfe5ef;

font-size:15px;

transition:.2s;

}

input:focus{

outline:none;

border-color:var(--blue);

box-shadow:0 0 0 4px rgba(47,81,149,.12);

}

.primary{

height:56px;

border:none;

border-radius:14px;

background:var(--navy);

color:white;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.primary:hover{

transform:translateY(-2px);

}

.google{

height:56px;

border-radius:14px;

background:white;

border:1px solid #dfe5ef;

cursor:pointer;

font-weight:600;

transition:.25s;

}

.google:hover{

background:#f7f9fd;

}

.switch{

margin-top:10px;

font-size:14px;

text-align:center;

color:var(--muted);

}

.switch span{

color:var(--pink);

font-weight:700;

cursor:pointer;

}

@media(max-width:900px){

.login-page{

grid-template-columns:1fr;

}

.left-panel{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        100deg,
        #eef7ff 0%,
        #f7fbff 40%,
        #fff8fc 70%,
        #ffffff 100%
    );

}

.auth-card{

width:min(92%,430px);

}

.preference-grid{

grid-template-columns:1fr;

}

.lumi{

right:18px;
bottom:18px;

}

}
