*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: linear-gradient(135deg,#6C2BD9,#7B3FE4);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
}

.container{
    width:100%;
    max-width:420px;
    padding:20px;
}

.card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo h1{
    font-size:32px;
    font-weight:700;
}

.logo p{
    font-size:14px;
    opacity:0.8;
}

input{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.15);
    color:white;
    font-size:14px;
}

input::placeholder{
    color:#ddd;
}

button{
    width:100%;
    padding:14px;
    margin-top:15px;
    border:none;
    border-radius:12px;
    background:white;
    color:#6C2BD9;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#f3f3f3;
}

.link{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

.link a{
    color:white;
    font-weight:600;
    text-decoration:none;
}

.hero{
    text-align:center;
    margin-bottom:30px;
}

.hero h2{
    font-size:28px;
    margin-bottom:10px;
}

.hero p{
    opacity:0.85;
}

.btn-outline{
    background:transparent;
    border:1px solid white;
    color:white;
}