body{
background:#0f1117;
color:white;
font-family:monospace;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.container{
background:#1b1f2a;
padding:30px;
border-radius:10px;
width:500px;
box-shadow:0 0 20px #00ff9d55;
}

h1{
text-align:center;
color:#00ff9d;
}

textarea{
width:100%;
height:100px;
margin-top:10px;
background:#0f1117;
color:white;
border:1px solid #00ff9d;
padding:10px;
border-radius:5px;
}

input{
width:100%;
margin-top:10px;
padding:10px;
background:#0f1117;
color:white;
border:1px solid #00ff9d;
border-radius:5px;
}

button{
margin-top:15px;
padding:10px 20px;
background:#00ff9d;
border:none;
border-radius:5px;
cursor:pointer;
font-weight:bold;
}

.buttons{
display:flex;
justify-content:space-between;
}