:root{
  --bg:#040810;
  --panel:#07111c;
  --line:rgba(255,255,255,.10);
  --text:#f5f8fc;
  --muted:#8fa1b6;
  --cyan:#12e6d8;
  --cyan2:#67fff4;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  min-height:100vh;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(18,230,216,.16), transparent 26%),
    linear-gradient(180deg,#03060c,#07111c);
}

.panel-login{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:30px;
}

.login-card{
  width:min(460px,94vw);
  padding:42px;
  border-radius:34px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  box-shadow:0 40px 120px rgba(0,0,0,.45);
  backdrop-filter:blur(18px);
}

.login-card img{
  width:92px;
  height:92px;
  object-fit:contain;
  margin-bottom:20px;
}

.login-card span{
  color:var(--cyan);
  font-size:13px;
}

.login-card h1{
  margin-top:18px;
  font-size:36px;
  line-height:1.08;
}

.login-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.7;
}

form{
  margin-top:28px;
  display:grid;
  gap:16px;
}

label{
  display:grid;
  gap:8px;
  color:#dce8f3;
  font-size:14px;
}

input{
  height:52px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:white;
  padding:0 16px;
  outline:none;
}

input:focus{
  border-color:rgba(18,230,216,.5);
}

button{
  height:54px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--cyan),var(--cyan2));
  color:#031316;
  font-weight:900;
  cursor:pointer;
  margin-top:6px;
}

small{
  display:block;
  margin-top:18px;
  color:#6f8299;
}
.login-button{
  height:54px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--cyan),var(--cyan2));
  color:#031316;
  font-weight:900;
  text-decoration:none;
  display:grid;
  place-items:center;
  margin-top:6px;
}
.dash-layout{
  min-height:100vh;
  display:flex;
}

.dash-sidebar{
  width:270px;
  padding:28px;
  background:rgba(255,255,255,.045);
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.dash-sidebar img{
  width:90px;
  height:90px;
  object-fit:contain;
  margin-bottom:24px;
}

.dash-sidebar a{
  color:#dce8f3;
  text-decoration:none;
  padding:14px 16px;
  border-radius:16px;
}

.dash-sidebar .active,
.dash-sidebar a:hover{
  background:rgba(18,230,216,.10);
  color:var(--cyan);
}

.dash-main{
  flex:1;
  padding:34px;
}

.dash-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:26px;
}

.dash-top span{color:var(--cyan)}
.dash-top h1{font-size:42px;margin-top:8px}

.dash-top button,
.dash-panel button{
  border:0;
  border-radius:999px;
  padding:14px 22px;
  background:linear-gradient(135deg,var(--cyan),var(--cyan2));
  color:#031316;
  font-weight:900;
}

.dash-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:20px;
}

.dash-cards div,
.dash-panel{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:26px;
  padding:24px;
}

.dash-cards span{color:var(--muted)}
.dash-cards strong{
  display:block;
  margin-top:14px;
  font-size:30px;
}

.dash-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
}

.dash-panel h2{margin-bottom:18px}
.dash-panel p{
  color:var(--muted);
  line-height:1.9;
}

.wallet-screen{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:30px;
}

.wallet-phone{
  width:min(390px,94vw);
  min-height:660px;
  border-radius:42px;
  padding:34px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow:0 40px 120px rgba(0,0,0,.45);
}

.wallet-phone img{
  width:96px;
  height:96px;
  object-fit:contain;
}

.wallet-phone span{color:var(--cyan)}
.wallet-phone h1{
  font-size:52px;
  margin-top:36px;
}

.wallet-phone p{
  color:var(--muted);
  margin-top:8px;
}

.wallet-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:40px;
}

.wallet-actions button{
  min-height:58px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(18,230,216,.08);
  color:white;
  font-weight:800;
}

.wallet-phone a{
  display:block;
  margin-top:36px;
  color:var(--cyan);
  text-decoration:none;
}

@media(max-width:900px){
  .dash-layout{flex-direction:column}
  .dash-sidebar{width:100%;flex-direction:row;overflow:auto}
  .dash-cards,.dash-grid{grid-template-columns:1fr}
}
.user-create{
  margin-bottom:22px;
}

.user-form-card{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
}

.form-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:24px;
}

.form-head span{
  color:var(--cyan);
}

.form-head h2{
  margin-top:8px;
  font-size:32px;
}

.form-head button{
  border:0;
  border-radius:999px;
  padding:14px 22px;
  background:linear-gradient(135deg,var(--cyan),var(--cyan2));
  color:#031316;
  font-weight:900;
}

.user-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.user-form-grid label{
  display:grid;
  gap:10px;
  color:#dce8f3;
}

.user-form-grid input,
.user-form-grid select{
  height:54px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  color:white;
  padding:0 16px;
  outline:none;
}

.user-form-grid input:focus,
.user-form-grid select:focus{
  border-color:rgba(18,230,216,.45);
}

@media(max-width:900px){

  .user-form-grid{
    grid-template-columns:1fr;
  }

  .form-head{
    flex-direction:column;
    align-items:flex-start;
  }
}
.login-switch{
  display:grid;
  gap:14px;
  margin-top:28px;
  margin-bottom:26px;
}

.switch-card{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  text-decoration:none;
  transition:.25s ease;
}

.switch-card strong{
  display:block;
  color:white;
  font-size:17px;
}

.switch-card span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.switch-card:hover,
.switch-card.active{
  border-color:rgba(18,230,216,.35);
  background:rgba(18,230,216,.08);
  transform:translateY(-1px);
}
