.account-container{
max-width:600px;
margin:40px auto;
padding:20px;
}

.center{
background:linear-gradient(180deg,#111827,#1c1c29);
padding:30px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.05);
box-shadow:0 15px 35px rgba(0,0,0,0.7);
text-align:center;
}

.form-box{
max-width:380px;
margin:20px auto;
background:#1c1c29;
padding:25px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.7);
border:1px solid rgba(255,255,255,0.05);
}

.account-form{
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
}

.account-form input,
.account-form select{
width:220px;
padding:10px;
border-radius:8px;
border:1px solid rgba(255,255,255,0.1);
background:#111827;
color:white;
font-size:14px;
}

.account-form input:focus,
.account-form select:focus{
outline:none;
border:1px solid #38bdf8;
box-shadow:0 0 8px rgba(56,189,248,0.4);
}

.account-form button{
width:200px;
padding:10px;
border:none;
border-radius:8px;
background:#38bdf8;
color:#0f172a;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.account-form button:hover{
background:#dc2626;
transform:translateY(-2px) scale(1.03);
box-shadow:0 6px 15px rgba(249,115,22,0.5);
}

.account-actions{
margin-top:20px;
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:10px 18px;
background:#38bdf8;
color:#0f172a;
border-radius:8px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
background:#dc2626;
transform:translateY(-2px) scale(1.03);
box-shadow:0 5px 15px rgba(249,115,22,0.5);
}

.logout{
background:#ef4444;
color:white;
}

.logout:hover{
background:#dc2626;
}

.success-msg{
background:#22c55e;
padding:12px;
border-radius:8px;
margin-bottom:15px;
color:white;
font-weight:bold;
text-align:center;
box-shadow:0 5px 15px rgba(34,197,94,0.4);
}

.login-title{
margin-top:25px;
}

.logout-btn{
float:right;
background:#c0392b;
color:white;
padding:6px 12px;
text-decoration:none;
border-radius:4px;
font-size:13px;
}

.logout-btn:hover{
background:#e74c3c;
}

.char-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.char-table th{
border:1px solid #ccc;
padding:8px;
text-align:center;
background:#f0f0f0;
color:#000;
}

.char-table td{
border:1px solid #ccc;
padding:8px;
text-align:center;
color:#fff;
}