/* stylesheet.css */

/* Add your custom styles here */
body {
    font-family: 'Noto Sans Gujarati', Arial, sans-serif !important;
    background-color:rgba(249 ,249,249 ,0.5) !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-position-x: 50%;

    background-image: linear-gradient(90deg, rgb(232 162 22 / 40%) 0%, rgba(255,255,255,0.01) 20%, rgba(255,255,255,0.01) 80%, rgb(0 212 255 / 20%) 100%), url(./Photos/png01.png)
  }

  background-image
  {
    padding-top: 100px;
    opacity: 0.5;
  }

  /* set container margin-top */
  .set-mt {
    margin: 10px auto;
  }
  
  .container_2 {
    /* margin: 10px auto; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / 93%), 0 1px 3px rgba(0,0,0,.2);
    background-color: rgb(255 255 255 / 44%);
  }
  
  .container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    font-weight: bold;
    color: #555;
  }


  input[type="text"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  input[type="password"],
  select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px !important;
    line-height: 3;
    transition: border-color 0.3s;
    
  }
  
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="date"]:focus,
  select:focus {
    outline: none;
    border-color: #66afe9;
  }
  
  .form-control-file {
    overflow: hidden;
    position: relative;
  }
  
  .form-control-file input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .alert {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
  }
  
  .alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
  }
  
  /* Add hover effects for buttons and transitions */
  .btn-primary,
  .btn-primary:hover {
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  /* Add fadeIn effect for member addition */
  .fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Hover effects for form fields */
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
select:hover {
  border-color: #66afe9;
  box-shadow: 0 0 4px rgba(102, 175, 233, 0.5);
}

/* Hover effect for file input */
.form-control-file:hover {
  border-color: #66afe9;
  box-shadow: 0 0 4px rgba(102, 175, 233, 0.5);
}

/* Transition for form fields */
input[type="text"],
input[type="tel"],
input[type="date"],
select,
.form-control-file input[type="file"] {
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover effect for dynamic form elements */
#members_info .form-group:hover {
  transition: background-color 0.3s;
}

/* Add fadeInUp effect for the form and buttons */
.stlps_form_class {
  animation: fadeInUp 1s;
}

.stlps_form_class button {
  animation: fadeInUp 1s;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-content {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
}
input {
    width: 100%;
}
tfoot {
  display: table-row-group;
}

header .conta{
  text-align: center;
  color: black;
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
}

header {
  padding-top: 10px;
}
p{
  font-size: 380%;
    width: 100%;
}


#datatable_details {
  padding: 15px;
  overflow: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(0 0 0 / 93%), 0 1px 3px rgba(0,0,0,.2);
  background-color: rgb(255 255 255 / 44%);
}

@media only screen and (max-width: 768px) {

body{
  background-size: contain, 70%;
}

}