:root{
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}
body{
    max-width:880px;
    margin:36px auto;
    padding:24px;
    border-radius:12px;
    background:#f6f8fb;
    color:#111;
}

h1{
    font-size:20px;
    margin:0 0 8px;
}

.card{
    background:#fff;
    padding:18px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(24,39,75,.06);
}
    
label{
    display:block;
    margin:12px 0 6px;
    font-weight:600;
}

.row{
    display:flex;
    gap:12px;
    align-items:center;
}
    
input[type="number"]{
    width:80px;
    padding:8px;
    border-radius:8px;
    border:1px solid #dde3ef;
}
    
input[type="text"]{
    width:100%;
    padding:8px;
    border-radius:8px;
    border:1px solid #dde3ef;
}
    
.checks{
    display:flex;
    flex-wrap:wrap;
    gap:8px}
.checks label{
    font-weight:normal;
}
    
button{
    padding:10px 14px;
    border-radius:10px;
    border:0;background:#0b69ff;color:#fff;font-weight:700;cursor:pointer;
}
    
button.secondary{
    background:#e6eefc;
    color:#0b69ff;
}
    
.meta{
    margin-top:10px;
    display:flex;
    gap:12px;
    align-items:center;
}
    
.meter{
    height:10px;
    border-radius:6px;
    background:#eee;
    overflow:hidden;
    width:160px;
}
    
.meter > i{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#f44336,#ff9800,#8bc34a);
}
    
small{
    color:#556;}
    
footer{
    margin-top:12px;
    font-size:13px;
    color:#666;
}


.custom-link {
    margin-right: auto;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(38, 50, 56, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
  }

  .custom-link:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 20px rgba(38, 50, 56, 0.5);
    text-decoration: none;
  }