@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{

--primary:#170A36;
--secondary:#ED9EDB;
--bg:#F7F8FC;
--white:#ffffff;
--text:#4B5563;
--success:#2BB673;
--border:#E9EAF2;

}

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

body{

background:var(--bg);

}

#portal-app{

max-width:1180px;

margin:50px auto;

padding:20px;

}

.portal{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.portal-top{

padding:45px;

text-align:center;

background:white;

}

.logo{

width:90px;

margin:auto auto 20px;

display:block;

}

.portal-top h1{

font-size:36px;

color:var(--primary);

font-weight:700;

margin-bottom:8px;

}

.portal-top p{

font-size:16px;

color:#6b7280;

}

.steps{

display:flex;

justify-content:space-between;

padding:25px 40px;

background:#fafafa;

border-top:1px solid var(--border);

border-bottom:1px solid var(--border);

}

.step{

flex:1;

text-align:center;

position:relative;

}

.step::after{

content:"";

position:absolute;

width:100%;

height:3px;

background:#ddd;

left:50%;

top:18px;

z-index:1;

}

.step:last-child::after{

display:none;

}

.circle{

width:38px;

height:38px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

background:#ddd;

color:white;

font-weight:600;

position:relative;

z-index:2;

}

.step.active .circle{

background:var(--secondary);

}

.step span{

display:block;

margin-top:12px;

font-size:13px;

font-weight:600;

color:#666;

}

.content{

padding:45px;

}

.card{
    background:#FFFFFF;
    color:#170A36;
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.badge{

display:inline-block;

background:rgba(255,255,255,.12);

padding:8px 16px;

border-radius:40px;

font-size:13px;

font-weight:600;

margin-bottom:18px;

}

.card h2{

font-size:34px;

margin-bottom:10px;

}

.card p{

opacity:.9;

line-height:1.8;

margin-bottom:30px;

}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:25px auto 0;
    max-width:1050px;
}

.feature{

background:white;

color:var(--primary);

padding:18px;

border-radius:14px;

font-weight:600;

box-shadow:0 10px 20px rgba(0,0,0,.06);

}

.actions{

margin-top:40px;

text-align:center;

}

.btn{

background:var(--secondary);

color:white;

border:none;

padding:18px 45px;

border-radius:50px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 25px rgba(237,158,219,.4);

}

.form{

max-width:750px;

margin:auto;

}

.form h2{

text-align:center;

color:var(--primary);

margin-bottom:30px;

font-size:30px;

}

.input{
    width:100%;
    padding:15px 18px;
    margin-bottom:18px;
    border:1px solid #D8DCE8;
    border-radius:12px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    color:#170A36;
    background:#fff;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    box-sizing:border-box;
}

select.input{
    cursor:pointer;
    min-height:56px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23170A36' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23170A36' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    padding-right:50px;
}

.input:focus{

outline:none;

border-color:var(--secondary);

}

@media(max-width:768px){

.steps{

overflow:auto;

gap:20px;

}

.step{

min-width:90px;

}

.content{

padding:25px;

}

.features{

grid-template-columns:1fr;

}

.portal-top{

padding:30px 20px;

}

.portal-top h1{

font-size:28px;

}

.card{

padding:25px;

}

.card h2{

font-size:28px;

}

}