/* Make both sides equal height */
    .row-equal {
      display: flex;
      flex-wrap: wrap;
    }
    .row-equal > [class*='col-'] {
      display: flex;
      flex-direction: column;
    }

    .left-section {
      background-color: #fff5db;
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .left-section h4 {
      background-color: #a10000;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: bold;
      margin-top: 0;
    }
    .left-section p {
      margin-top: 15px;
      color: #333;
      line-height: 1.6;
    }
    .left-section ul {
      margin-top: 15px;
      list-style-type: disc;
      padding-left: 20px;
    }
    .left-section li {
      margin-bottom: 8px;
    }
    .btn-gold {
      background: linear-gradient(to right, #f8e19b, #d4af37);
      border: none;
      color: #000;
      font-weight: bold;
      padding: 10px 20px;
      margin-top: 20px;
      text-align: center;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      width: 200px;
    }
    .btn-gold:hover {
      background: linear-gradient(to right, #d4af37, #f8e19b);
      color: #000;
    }

    .right-section {
      background-color: #a10000;
      color: #fff;
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .right-section h4 {
      font-weight: bold;
      margin-bottom: 5px;
		color: #FFFFFF;
		font-size: 25px;
    }
    .right-section p {
      font-size: 16px;
      margin-bottom: 30px;
		color: #FFFFFF;
		text-align: center !important;
    }
    .form-container {
      background-color: #fff;
      color: #000;
      padding: 20px;
      border-radius: 15px;
      width: 100%;
      max-width: 400px;
    }
    .form-control {
      border: none;
      border-bottom: 1px solid #ccc;
      box-shadow: none;
      border-radius: 0;
      margin-bottom: 15px;
    }
/* On hover: gold underline */
    .form-control:hover {
      border-bottom-color: #d4af37;
    }

    /* On focus: red underline + glow effect */
    .form-control:focus {
      border-bottom-color: #a10000;
      box-shadow: 0 2px 6px -2px rgba(161, 0, 0, 0.4);
      outline: none;
    }
    .submit-btn {
      background: linear-gradient(to right, #f8e19b, #d4af37);
      border: none;
      color: #000;
      font-weight: bold;
      width: 100%;
      padding: 10px;
      border-radius: 6px;
    }
    .submit-btn:hover {
      background: linear-gradient(to right, #d4af37, #f8e19b);
    }

    @media (max-width: 767px) {
      .row-equal {
        display: block;
      }
    }
	/* Mascot image styling */
.mascot-image img {
  max-width: 100px;
  height: auto;
}