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

body{

background:#0d1117;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.login-card{

background:#fff;

padding:40px;

border-radius:16px;

width:380px;

text-align:center;

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

}

.logo{

width:90px;

margin-bottom:20px;

}

.login-card h2{

margin-bottom:8px;

}

.login-card p{

color:#666;

margin-bottom:25px;

}

input{

width:100%;

padding:14px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

}

button{

width:100%;

padding:14px;

border:none;

border-radius:8px;

background:#c8a046;

color:white;

font-size:16px;

cursor:pointer;

font-weight:600;

}

button:hover{

background:#a98328;

}

#message{

margin-top:20px;

font-weight:bold;

color:red;

}
