body {
  min-height: 100vh;
  background: linear-gradient(135deg, #041c3c, #0d6efd);
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 0;
}
/* ---   width: 480px; */
.glass-card {
   
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  color: #fff;
  animation: fadeUp .6s ease;
}

.form-control {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
}

.form-control::placeholder {
  color: #dbe7ff;
}

.btn-primary {
  border-radius: 10px;
  font-weight: 600;
}

a {
  color: #cfe2ff;
  text-decoration: none;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to { opacity:1; transform: translateY(0); }
}

.glass {
  width:380px;
  padding:30px;
  border-radius:18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  color:#fff;
}

input {
  width:100%;
  padding:10px;
  border-radius:8px;
  border:none;
  margin-bottom:15px;
}

button {
  width:100%;
  padding:10px;
  border:none;
  border-radius:8px;
  background:#0d6efd;
  color:#fff;
  font-weight:600;
}
a { color:#cfe2ff; text-decoration:none; }





.sidebar {
  min-height: 100%;
}

.folder-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  color:#fff;
  margin-bottom:6px;
  transition:.25s;
}

.folder-item:hover {
  background: rgba(255,255,255,.15);
}

.folder-item.active {
  background: rgba(13,110,253,.45);
  font-weight:600;
}

.folder-size {
  font-size:12px;
  opacity:.8;
}






