@font-face{
font-family:'Pelak';
src:url('../font/Pelak.woff2') format('woff2');
font-display:swap;
}

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

body{

font-family:'Pelak',sans-serif;

background:
radial-gradient(circle at 20% 20%, rgba(37,99,235,0.2), transparent 40%),
radial-gradient(circle at 80% 80%, rgba(59,130,246,0.15), transparent 40%),
linear-gradient(180deg,#020617,#020617);

color:white;

min-height:100vh;

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

}

/* container */

.container{

width:100%;
max-width:700px;
padding:20px;

}

/* card */

.card{

background:rgba(15,23,42,0.75);

border:1px solid rgba(255,255,255,0.08);

border-radius:20px;

padding:35px;

backdrop-filter:blur(18px);

box-shadow:

0 30px 80px rgba(0,0,0,0.8),
0 0 30px rgba(37,99,235,0.25);

}

/* logo */

.logo-box{
text-align:center;
margin-bottom:25px;
}

.logo{

width:85px;

filter:
drop-shadow(0 0 6px rgba(255,255,255,0.4))
drop-shadow(0 0 20px rgba(37,99,235,0.6));

}

.site-name{

margin-top:10px;

font-size:24px;

color:#e2e8f0;

}

/* title */

.title{

text-align:center;

font-size:28px;

margin-top:10px;

margin-bottom:6px;

}

.subtitle{

text-align:center;

color:#94a3b8;

margin-bottom:25px;

}

/* textarea */

textarea{

width:100%;

min-height:160px;

background:#020617;

border:1px solid rgba(255,255,255,0.08);

border-radius:14px;

padding:15px;

color:white;

font-size:14px;

resize:vertical;

outline:none;

transition:0.2s;

}

textarea:focus{

border-color:#3b82f6;

box-shadow:0 0 0 3px rgba(59,130,246,0.2);

}

/* button */

button{

width:100%;

margin-top:15px;

background:linear-gradient(135deg,#2563eb,#3b82f6);

border:none;

border-radius:14px;

padding:14px;

color:white;

font-size:15px;

cursor:pointer;

transition:0.25s;

}

button:hover{

transform:translateY(-2px);

box-shadow:0 10px 30px rgba(37,99,235,0.4);

}

/* status */

#status{

margin-top:18px;

text-align:center;

color:#93c5fd;

}

/* mobile */

@media(max-width:600px){

.card{
padding:25px;
}

.title{
font-size:22px;
}

.logo{
width:70px;
}

}
