* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f4f7fb;
  color: #222;
}

/* Header */
.header {
  background: #0f3cc9;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.login-btn {
  background: #fff;
  color: #0f3cc9;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f3cc9, #3b82f6);
  color: #fff;
}

.hero h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 15px;
  opacity: 0.95;
}

.primary-btn {
  margin-top: 15px;
  background: #ffcc00;
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

/* Info Section */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
  color: #0f3cc9;
}

/* Charge Section */
.charge {
  background: #fff;
  margin: 20px;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.charge h2 {
  color: #16a34a;
}

.note {
  font-weight: bold;
  color: #dc2626;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #555;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

/* CRISP LOGO */
.logo img{
  height:48px;        /* FIXED height */
  width:auto;         /* auto width = no stretch */
  object-fit:contain;
  image-rendering:auto;
  -webkit-transform:translateZ(0);
  transform:translateZ(0);
}

.logo span{
  font-size:20px;
  font-weight:600;
  color:#fff;
}
@media (max-width:480px){
  .logo img{
    height:36px;
  }
  .logo span{
    font-size:16px;
  }
}
