/*
Custom CSS for TemplateMo 561 Purple Buzz

https://templatemo.com/tm-561-purple-buzz

*/
/* Right Column - Form */
/* Floating Button */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999990;
  }
  
  .floating-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
  }
  
  .floating-button:hover {
    background: #0056b3;
  }
  
  /* Centered Popup Form */
  /* Full-screen overlay */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  
  
  /* Popup Box */
  .popup {
    margin-top: 150px;
    background: white;
    padding: 6px 20px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  /* Popup Open Animation */
  .popup-overlay.active {
    display: flex;
  }
  
  .popup-overlay.active .popup {
    transform: scale(1);
    opacity: 1;
  }
  
  /* Header */
  .popup-header {
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    align-items: center;
  }
  
  .popup-header h3 {
    font-size: 1.4rem;
    margin: 0;
    padding: 10px;
    
    color: #0d3866; 
    font-size: 25px;
  }
  
  .close-btn {
    
    cursor: pointer;
    font-size: 30px; color:red;
  }
  
  .form-group {
    margin-bottom: 10px;
    text-align: left;
  }
  
  
  .form-group label {
    font-weight: bold;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
  }
  
  input,
  select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .error-msg {
    color: red;
    font-size: 12px;
  }
  
  
  .submit-button {
    background-color: #28a745; /* Green for success */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  .submit-button  {
    background-color: #d3d3d3; /* Disabled - Grey */
    color: white;
    border: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: not-allowed;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-enabled {
    background-color: #28a745 !important; /* Enabled - Green */
    cursor: pointer;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    transform: scale(1.05);
  }
  
  .btn-enabled:hover {
    background-color: #218838 !important; /* Darker Green */
  }
  
  
  
  
  /* Open Button */
  .open-popup-btn {
    background: #fe5555;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  

