.form-group {
    margin-bottom: 15px;
  }
  
  input[type="text"],
  
  textarea {
    resize: none;
    width: 100%;
    padding: 10px;
    border: 2px solid #ff69b4;
    border-radius: 4px;
    background-color: #400080;
    color: #ff69b4;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus,
  textarea:focus {
    resize: none;
    border-color: #ff1493;
    outline: none;
    box-shadow:
      0 0 5px #ff69b4,
      0 0 10px #ff1493;
  }
  
  button[type="submit"] {
    background-color: #ff69b4;
    color: #d4c6d4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 8px #ff69b4;
  }
  
  button[type="submit"]:hover {
    background-color: #ff1493;
    color: #ffffff;
    box-shadow:
      0 0 10px #ff1493,
      0 0 20px #ff69b4;
  }


  .entry {
    border-bottom: 2px solid #ff69b4; /* thicker and more visible line */
    padding-bottom: 10px;             /* space below entry text */
    margin-bottom: 10px;              /* space after the line */
}
