*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

display:flex;
justify-content:center;

background:linear-gradient(135deg,#0f172a,#1e293b,#020617);

color:white;

font-family:"Inter", sans-serif;

}

/* FAIXAS LATERAIS */

.stripe{

position:fixed;

top:0;
bottom:0;

width:22px;

background:repeating-linear-gradient(
45deg,
#ffd000,
#ffd000 10px,
#000 10px,
#000 20px
);

}

.left{
left:0;
}

.right{
right:0;
}

/* CARD */

.card{

margin-top:28px;

padding:16px 28px;

text-align:center;

background:rgba(255,255,255,0.03);

border-radius:10px;

backdrop-filter:blur(8px);

border:1px solid rgba(255,255,255,0.05);

box-shadow:0 6px 18px rgba(0,0,0,0.35);

}

/* TITULO */

.title{

font-family:"Playfair Display", serif;

font-size:22px;

letter-spacing:1.5px;

margin-bottom:4px;

}

/* TEXTO */

.subtitle{

font-size:11px;

opacity:0.65;

letter-spacing:0.4px;

}