/* import fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* set global properties */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  direction: rtl;
}

p,
a,
button,
span,
li,
small,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
option {
  font-family: "Rubik", sans-serif;
}

input,
select,
button {
  outline: none;
}

/* color scheme */
:root {
  --primary-color: #ff9900;
  --secondary-color: #18a19d;
}


input,
select,
button {
  transition: all 400ms ease-in-out;
}

button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
  }
}