
/* ===== Card ===== */
.card {
    background: rgba(255, 165, 0, 0.25); 
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  /*text-align: center;*/
  color: #fff;
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px); /* glass effect */
}

.card:hover {
  transform: translateY(-5px);
}

/* ===== Logo ===== */
.logo img {
  width: 90px;
  margin-bottom: 20px;
  border-radius: 12px;
}

/* ===== Heading ===== */
.card h2 {
    margin-bottom: 10px !important;
    font-weight: 600;
}

.card p {
  font-size: 14px;
  margin-bottom: 30px;
  color: #fff9;
}

/* ===== Form Inputs ===== */
.input-control {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: #333;
    transition: 0.3s;
}

    .input-control:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 173, 84, 0.3);
    }

/* ===== Button ===== */
.btn-control {
    width: 100%;
    padding: 14px;
    background-color: #34AD54;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-control:hover {
        background-color: #2e944a;
    }
.footer {
    color: #ff9933;
    margin-top: 10px;
}

hr {
    color: #34ad54 !important;
    background: #34ad54 !important;
}

@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
  }

}