.account-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.account-box{
background:#151124;
border:1px solid rgba(56,189,248,.15);
border-radius:18px;
padding:18px;
display:flex;
flex-direction:column;
}

.account-title{
font-size:20px;
font-weight:700;
margin-bottom:15px;
}

.account-actions{
display:flex;
flex-direction:column;
gap:10px;
margin-top:auto;
padding-top:15px;
}
