/*!
Theme Name: club360
Theme URI: http://app.pb360.me
Author: Selim Koc
Author URI: https://www.selimkoc.com
Description: Description
Version: 1.4
Tested up to: 6.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: club360
*/

/* Rodrigo's CSS */
#pop-up__overlay {
    position: absolute;
    z-index:100;
    left:0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pop-up {
    width: 500px;
    height: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.form-container {
    width: 337px;
    /* Light purple background */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #f2e7fe;
  }
  
  /* Form Header */
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .logo {
    height: 40px;
  }
  
  .close-btn {
    font-size: 20px;
    color: #8c8c8c;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    margin-right: 0px
  }
  
  .close-btn:hover {
    color: #333;
  }
  
  /* Form Fields */
  .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #4e4e4e;
    margin-bottom: 8px;
  }
  
  .form-group .required {
    color: #bb4b3a; /* Red for the asterisk */
  }
  
  input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    color: #6e6e6e;
  }
  
  input:focus {
    outline: none;
    border-color: #8c8c8c;
  }
  
  /* Submit Button */
  .submit-btn {
    background-color: #bb4b3a; /* Button background red */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #a43f32; /* Slightly darker red on hover */
  }

  .red-logo{
    width: 60px;
    height: 32px;
  }

  .popup-form-label {
    color: #2F3538;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 500;
    word-wrap: break-word
  }

  .popup-form-inputs {
    color: #A2ABB1;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    word-wrap: break-word;
    height: 40px !important;
  }

  .popup-button {
    width: 100%;
    height: 100%; 
    padding-left: 48px; 
    padding-right: 48px; 
    padding-top: 15px; 
    padding-bottom: 15px; 
    background: #BB4B3A; 
    border-radius: 6px; 
    justify-content: center; 
    align-items: center; 
    gap: 24px; 
    display: inline-flex
  }

  .popup-button-text{
    color: white;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 500;
    word-wrap: break-word
  }