    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body{
  font-family:'Inter', sans-serif;
  background:#0b1220;
  color:#e5e7eb;
  padding:40px;
}






/* page title spacing */
h2{
  color:#60a5fa;
  margin-bottom:14px;
}

h3{
  color:#93c5fd;
  margin-top:18px;
}

/* CARD SYSTEM */
.box{
  max-width:850px;
  margin:22px auto;
  background:#111827;
  padding:28px;
  border-radius:16px;
  border:1px solid #1f2937;
  box-shadow:0 12px 30px rgba(0,0,0,0.45);
}

/* form layout */
input, textarea, select{
  width:100%;
  padding:12px;
  margin-top:8px;
  border-radius:8px;
  border:1px solid #1f2937;
  background:#020617;
  color:#e5e7eb;
  font-size:14px;
}

input:focus, textarea:focus{
  outline:none;
  border:1px solid #3b82f6;
}

/* buttons */
button{
  background:#2563eb;
  border:none;
  padding:12px;
  margin-top:14px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  color:white;
}

button:hover{
  background:#1d4ed8;
}

/* attendance buttons row */
.att{
  display:flex;
  gap:10px;
}

.att button{
  flex:1;
}

/* preview document style */
.preview{
  background:#020617;
  padding:20px;
  border-radius:10px;
  white-space:pre-wrap;
  line-height:1.7;
  border:1px solid #1f2937;
}

/* divider */
hr{
  border:none;
  border-top:1px solid #1f2937;
  margin:20px 0;
}