/* ===========================
   Shared Glass Theme v2.1
   =========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    color:#fff;
    background:#021a2b;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    background:
        linear-gradient(rgba(4,15,28,.22),rgba(4,15,28,.38)),
        url("river.jpg") center/cover no-repeat;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 48px;
}

.logo{
    font-weight:700;
    letter-spacing:2px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:28px;
    opacity:.85;
    transition:.2s;
}

nav a:hover,
nav a.active{
    opacity:1;
}

.wrap{
    flex:1;
    width:100%;
    padding:60px 10vw;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.glass{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.20);
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.heroText{
    max-width:560px;
}

.heroText h1{
    font-size:62px;
    margin-bottom:12px;
}

.heroText p{
    font-size:20px;
    color:rgba(255,255,255,.75);
}

.card{
    width:360px;
    padding:28px;
}

.card h3{
    margin-bottom:20px;
}

.card label{
    display:block;
    margin-bottom:6px;
    color:rgba(255,255,255,.9);
}

input{
    display:block;
    width:100%;
    padding:12px;
    margin-bottom:18px;

    box-sizing:border-box;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.20);
    border-radius:10px;

    color:#fff;
    font-size:15px;

    outline:none;
}

input:focus{
    border-color:rgba(255,255,255,.45);
}

button{
    display:block;
    width:100%;
    padding:12px;

    box-sizing:border-box;

    background:rgba(255,255,255,.18);
    border:none;
    border-radius:10px;

    color:#fff;
    font-size:15px;
    cursor:pointer;

    transition:.2s;
}

button:hover{
    background:rgba(255,255,255,.26);
}

#error{
    margin-top:16px;
    min-height:40px;
    color:#ffb5b5;
    font-size:14px;
    line-height:1.4;
}

.page{
    max-width:900px;
    margin:70px auto;
    padding:36px;
}

footer{
    margin-top:auto;
    text-align:center;
    padding:24px;
    color:rgba(255,255,255,.7);
}