body{
    background:#070b14;
    color:white;
    font-family:Arial;
    margin:0;
}

.topbar{
    background:#101728;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#00bfff;
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:white;
    margin:0 10px;
    text-decoration:none;
}

.hero{
    height:350px;
    background:url('../img/banner.jpg') center/cover;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.hero h1{
    font-size:60px;
}

.servers{
    width:90%;
    margin:30px auto;
}

.server-card{
    background:#12192b;
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
}

.server-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.server-info{
    padding:20px;
}

.btn{
    display:inline-block;
    padding:12px 20px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

.login-box,
.cadastro-box,
.dashboard{
    width:500px;
    margin:50px auto;
    background:#111827;
    padding:30px;
    border-radius:12px;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin-top:10px;
    background:#1b2336;
    border:none;
    color:white;
}

button{
    width:100%;
    padding:12px;
    margin-top:15px;
    background:#ff9800;
    border:none;
    color:white;
    font-weight:bold;
}

table{
    width:100%;
    border-collapse:collapse;
}

table tr td,
table tr th{
    border:1px solid #222;
    padding:10px;
}