/**
 * Welcome Modal Styles
 * Styles for the first-time visitor welcome form modal
 */

/* The Modal - Dark overlay that covers the whole page */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  /* The Modal Content Box - The white box in the center */
  .modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-family: 'Lato', serif;
  }
  
  /* The Close Button (X) */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #2F4070;
  }
  
  /* Modal heading */
  .modal-content h2 {
    margin-top: 0;
    color: #2F4070;
    font-family: 'Lato', serif;
  }
  
  .modal-content p {
    color: #202020;
    margin-bottom: 20px;
  }
  
  /* Form styling */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2F4070;
    font-weight: bold;
    font-size: 13px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Bitter', serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
  }
  
  /* Highlight input fields when focused */
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #2F4070;
  }
  
  /* Submit button styling */
  .submit-btn {
    background-color: #2F4070;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Lato', serif;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #2B5D8A;
  }