@charset "UTF-8";

html {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* config sweetalert width */
.swal-wide {
  width: 100vh !important;
}

input[type="text"],
input[type="number"],
select {
  height: 40px;
  width: 100%;
  padding-left: 20px;
  /* padding: 10px 20px; */
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffff;
}

h4 {
  color: #8c1aff;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #8c1aff;
  color: white;
  text-align: center;
}

.glassmorphism-light,
.glassmorphism-dark {
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.80);
  border-radius: 30px; /* More rounded corners */
  z-index: 2;
  /* overflow: hidden; */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4%;
  box-shadow: 0 8px 32px rgba(140, 26, 255, 0.15); /* Add subtle shadow */
}

.glassmorphism-dark {
  /* border: 2px solid rgba(0, 0, 0, 0.5); */
  /* background: rgba(0, 0, 0, 0.5); */
  border: 2px solid rgba(52, 59, 65);
  background: rgba(32, 37, 40, 0.8);
  color: white;
  border-radius: 30px; /* Consistent rounded corners */
}

.neon-white {
  color: white;
  text-shadow: 0 0 5px white;
}

.neon-blue {
  color: #007bff;
  text-shadow: 0 0 5px #87ceeb, 0 0 10px white, 0 0 20px white, 0 0 40px white;
}

.neon-purple {
  color: #8c1aff;
  text-shadow: 0 0 5px #c58bff, 0 0 10px white, 0 0 20px white, 0 0 40px white;
}

.neon-green {
  color: green;
  text-shadow: 0 0 5px greenyellow, 0 0 10px white, 0 0 20px white,
    0 0 40px white;
}

.neon-orange {
  color: orangered;
  text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white, 0 0 40px white;
}

/* Styling for the span elements */
.input-group-text {
  margin: 8px 0;
  border-radius: 20px;
  background-color: #ccc; /* Background color */
  padding: 8px 12px; /* Padding */
  cursor: default;
  transition: background-color 0.3s ease;
}

/* Focus effect */
.input-group-text:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}


.form-control {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border-radius: 20px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  /* font-size: 16px; */
  /* font-family: Arial, sans-serif; */
}

/* Hover effect */
/* .form-control:hover {
  border-color: #999;
} */

/* Focus effect */
.form-control:focus {
  border-color: #8c1aff; /* Purple border on focus */
  outline: none;
  box-shadow: 0 4px 20px rgba(140, 26, 255, 0.25); /* Add shadow on focus */
}

/* Placeholder color */
.form-control::placeholder {
  color: #999;
}

/* Autofill styles (optional) */
.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.form-select {
  width: 100%;
  margin: 8px 0;
  border-radius: 20px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  /* font-size: 16px; */
  /* font-family: Arial, sans-serif; */
  /* appearance: none; */
  /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23000000"><path d="M10 12l-6-6h12z"/></svg>'); Custom arrow icon */
  /* background-repeat: no-repeat; */
  /* background-position: right 15px center; */
  /* background-size: 12px; */
}

/* Hover effect */
/* .form-select:hover {
  border-color: #999;
} */

/* Focus effect */
.form-select:focus {
  border-color: #0d6efd;
  outline: none;
}

.form-check-input{
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #ffffff;
}