@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--black);
}
:root {
  --primary: #fe6635;
  --secoundary: #086efe;
  --black: #252525;
  --border: 1px solid #2525251a;
}
[class*="grid"] {
  display: grid;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  user-select: none;
}
body {
  text-size-adjust: 100%;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
p {
  color: var(--gray);
}
img,
video {
  max-width: 100%;
}
.container {
  max-width: 1240px;
  margin: auto;
  width: 100%;
}
header {
  height: 8rem;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index:9999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5rem;
}
header .links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
header .logo {
  width: 10rem;
}
main {
  padding-top: 10rem;
}
button {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  border-radius: 1rem;
  background: linear-gradient(87deg, var(--primary), var(--secoundary));
}
button i {
  line-height: 1;
  color: white;
}
section {
  padding: 8rem 0px;
  overflow: hidden;
}
.mesh-bg {
  width: 100%;
  height: 100vh;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 5rem 0;
}
.form-holder {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
form {
    background: #ffffffe6;
    max-width: 70rem;
    width: 100%;
    margin: auto;
    padding: 5rem;
    border-radius: 2rem;
    backdrop-filter: blur(15px);
}
form h2 {
    font-size: 3rem;
    text-transform: capitalize;
    text-align: center;
    color: var(--secoundary);
}
input,
.select {
  background: none;
  color: var(--black);
  padding: 2.5rem 3rem 1rem;
  width: 100%;
  font-size: 1.6rem;
}
.select {
  padding: 0;
  position: relative;
}
.select label {
  position: absolute;
  font-size: 1.3rem;
  left: 3rem;
  top: 0.5rem;
}
.select select {
  background: none;
  padding: 2.5rem 3rem 1rem;
  width: 100%;
  appearance: none;
}
.fild, .select {
    border-radius: 1rem;
    position: relative;
    margin-bottom: 1rem;
    border: var(--border);
}

.fild label {
  color: var(--black);
  font-size: 1.6rem;
  left: 3rem;
  line-height: 1;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s;
  font-weight: 500;
  pointer-events: none;
}

.fild input:-webkit-autofill ~ label,
.fild input:focus ~ label,
.fild input:not(:placeholder-shown) ~ label {
  color: var(--primary);
  font-size: 1.3rem;
  opacity: 1;
  top: 1.5rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
form button {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2rem;
}
/* table */
.main {
  padding: 5rem 0;
}
#customers {
  background: white;
  border-collapse: collapse;
  width: 100%;
}

#customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}

#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}

#customers tr:hover {
  background-color: #ddd;
}

#customers th {
  text-align: left;
  background-color: var(--secoundary);
  color: white;
  font-weight: 400;
}
.search {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  background: white;
  width: fit-content;
  margin: auto;
  margin-bottom: 3rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 1rem;
  max-width: 40rem;
  width: 100%;
}
.search button {
  background: var(--secoundary);
}
.search input {
  height: 100%;
  padding: 0 2rem;
  width: 100%;
}
.counts{
    text-align:center;
}
.counts p{
 font-size:2rem;
 color:var(--primary);
}
.title-maw{
    margin:2rem 0;
    text-align:center;
}
.title-maw h2{
    color:var(--primary);
    line-height:1.15;
    margin-bottom: 1rem;
}

@media (max-width: 990px){
    html{
        font-size:50%;
    }
}
@media (max-width: 660px){
    html{
        font-size:60%;
    }
    header {
  height: 8rem;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
header .container {
padding: 0 1.5rem;
}
form{
    padding: 2rem;
    margin: 0 auto;
        margin-top:8rem;
    width:calc(100% - 1rem);
}
.form-holder{
    height:100%;
    padding:5rem 0;
}
.row {
    grid-template-columns: 1fr;
    gap: 0;
}
}