

  :root{

--primary:#1F3C88;
--primary-hover:#162D63;

--accent:#D4AF37;

--background:#F5F7FA;

--surface:#FFFFFF;

--text:#1D1D1D;

--secondary:#757575;

}

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

body{

background:linear-gradient(
135deg,
#E8F0FE,
var(--background)
);

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

}

.overlay{

width:100%;
height:100%;

background:rgba(0,0,0,.45);

display:flex;

justify-content:center;

align-items:center;

padding:20px;

}

.card{

width:min(92%,520px);

max-width:480px;

padding:48px 42px;

border-radius:32px;

/*background:rgba(255,255,255,.95);*/
background:var(--surface);

backdrop-filter:blur(8px);

text-align:center;

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

box-shadow:
0 20px 50px rgba(0,0,0,.25);

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}

.logo-frame{

width:120px;
height:120px;

border-radius:24px;

background:white;

padding:10px;

display:flex;

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

box-shadow:
0 8px 24px rgba(0,0,0,.15);

margin-bottom:32px;

}

.logo{

width:90px;
height:90px;

object-fit:contain;

}

.logo-frame:hover{

transform:scale(1.05);

}


h1{

font-size:28px;

font-weight:700;

letter-spacing:1px;

/*color:#163A6B;*/
color:var(--primary);

}

.paroki{

font-size:22px;

font-weight:600;


margin-bottom:12px;

/*color:#222;*/
color:var(--text);

}

#tanggal{

font-size:19px;

line-height:1.7;

/*color:#666;*/
color:var(--secondary);

margin-bottom:36px;

}

button{

width:100%;

max-width:320px;

height:56px;

margin:10px auto;

border:none;

border-radius:18px;

font-size:17px;

font-weight:600;

/*background:#1976D2;*/

color:white;

background:var(--primary);

display:flex;

align-items:center;

justify-content:center;

gap:10px;

transition:.25s;

box-shadow:

0 4px 14px rgba(25,118,210,.25);

}

button:hover{

transform:translateY(-2px);

box-shadow:

0 10px 25px rgba(25,118,210,.35);

background:var(--primary-hover);

}

@media(max-width:600px){

.card{

padding:34px 22px;

}

button{

width:220px;

font-size:16px;

}

.logo-frame{

width:110px;
height:110px;

}

.logo{

width:75px;
height:75px;

}

}

