.nbdr_birthday-reminder-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 2px solid #ff7f50;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
  }
  
  .nbdr_birthday-reminder-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
  }
  
  .nbdr_birthday-reminder-section:hover {
    transform: scale(1.02);
  }
  
  .nbdr_birthday-reminder-section:hover::before {
    top: -40%;
    left: -40%;
  }
  
  .nbdr_birthday-reminder-section label {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 15px;
  }
  
  .nbdr_birthday-reminder-section input[type="date"] {
    width: 90%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
  }
  
  .nbdr_birthday-reminder-section input[type="date"]:hover,
  .nbdr_birthday-reminder-section input[type="date"]:focus {
    transform: scale(1.05);
    outline: none;
    background-color: #fffcf9;
  }
  
  .nbdr_birthday-reminder-section .birthday-info {
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.6;
  }