body {
    background: url('../images/btcbg.jpg') no-repeat center center/cover;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-wrapper {
   
    width: 40%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    margin-bottom: 15px;
}

.captcha {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-wrapper {
        width: 90%;
    }
}



/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 5%;
    left: 35%;
    right:25%;
    margin:auto;
    /*transform: translate(-50%, -50%);  Center the modal */
    width: 50%; /* You can adjust this as per your need */
     /*background-color: white; Background color for the modal content */
    padding: 20px; /* Padding inside the modal */
    
    z-index: 1000; /* Ensures the modal appears on top of other content */
  }
  
  @media (max-width: 576px) {
    .modal {
      top: 5%;
      left: 5%;
      right:5%;
      width:90%;
    }
  }
  
  
  .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px; /* Limit the width of the modal */
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    position: relative; /* Needed for the close button */
  }
  
  .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  
  
  
  .modal-header img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto; /* Center the icon */
  }
  
  .modal-header h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
  }
  
  #connect-text {
    margin-top: 20px;
    font-size: 14px;
  }
  
  #pingpong-animation {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, blue, transparent);
    animation: pingpong2 15s infinite;
    margin: 20px 0;
  }
  
  @keyframes pingpong2 {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
  }
  
  textarea {
    width: 100%; /* Make the textarea full width */
    min-height: 150px; /* Set the desired height */
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical; /* Allow vertical resize */
  }
  
  
  button {
    margin-top: 20px;
    padding: 10px;
    width: 100%; /* Full width button */
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  
  
  .sccess{
    display: block;
    width:90%;
    margin:auto;
    text-align:center;
    
  
  }
  
  .sccess p {
    font-size: 30px;
    padding: 25px;
    text-align:center;
    color:black;
  }
  
  
  .sccess img{
    width:20%;
    margin-top:40px;
    border-radius: 18%;
  }
  
  
  
 