

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");




.hidden {
  display: none !important;
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* direction: rtl; */
  
}

body {
  position: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url("./img/5.jpg");
  background-size:  cover ;
  background-position: bottom;
  background-repeat: no-repeat;
  overflow: hidden;
  
}

body::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -50px;
  width: 30%;
  height: 50%;

  background-image: url("./img/batot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0.8;
  pointer-events: none;
  z-index: 20;
}

.parent-wheal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: min(20px, 3vw);
  box-sizing: border-box;
  direction: ltr !important;
}

.title-wheal {
  width: min(200px, 25vw);
  height: min(200px, 25vw);
  z-index: 30000;
  position: absolute;
  top: min(20px, 3vh);
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
  max-height: 200px;
}
.title-wheal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin-top: 40px !important;
  margin-left: 80px !important;
}
/* Container */
.container {
  position: relative;
  width: min(400px, 90vw);
  height: min(400px, 90vw);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.container::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  width: 120%;
  height: 120%;
  background-image: url("./img/frame-wheal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -10;
}

/* Spin Button */
 .spinBtn {
  position: absolute;
  width: min(60px, 12vw);
  height: min(60px, 12vw);
  /* background: #c4fb79; */
  background-color: #E25400;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  /* border: min(8px, 1.5vw) solid #efe859; */
  border: min(8px, 1.5vw) solid #E25400;

  cursor: pointer;
  user-select: none;
  animation: pulse 2s infinite;
  font-size: min(14px, 3vw);
}

.spinBtn::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 20px;
  height: 30px;
  background: #E25400;
  clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
} 

/* Bottom Spin Button */
 /* .spinBtnBottom {
  display: block;
  width: min(120px, 25vw);
  height: min(50px, 10vw);
  background: linear-gradient(145deg, #c4fb79, #efe859);
  border: min(4px, 0.8vw) solid #2e590e;
  border-radius: min(25px, 5vw);
  color: #2e590e;
  font-size: min(18px, 4vw);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: min(2px, 0.4vw);
  cursor: pointer;
  user-select: none;
  margin: min(100px, 15vh) auto 0;
  position: relative;
  z-index: 1000;

  
  box-shadow: 0 min(6px, 1.2vw) 0 #2e590e,
     0 min(10px, 2vw) min(15px, 3vw)
      rgba(0, 0, 0, 0.3); 
  transition: all 0.2s ease;
}  */

/* .spinBtnBottom:hover {
  transform: translateY(-3px);
  box-shadow: 0 min(6px, 1.2vw) 0 #2e590e,
    0 min(12px, 2.4vw) min(18px, 3.6vw) rgba(0, 0, 0, 0.4); 
  background: linear-gradient(145deg, #efe859, #c4fb79);
} */

/* .spinBtnBottom:active {
  transform: translateY(min(4px, 0.8vw));
  box-shadow: 0 min(2px, 0.5vw) 0 #2e590e,
    0 min(6px, 1.2vw) min(10px, 2vw) rgba(0, 0, 0, 0.4);
} */

/* .spinBtnBottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
   background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  ); 
  transition: left 0.5s;
} */

/* .spinBtnBottom:hover::before {
  left: 100%;
} */

/* Wheel */
.wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 5s ease-in-out;
  direction:  ltr !important;
}

.wheel.bounce {
  animation: bounceStop 1s ease-out forwards;
}

/* Segments */
.wheel .number {
  position: absolute;
  width: 50%;
  height: 50%;
  /* background: var(--clr); */
  /* background: linear-gradient(to right, #E25400, #808080); */
  background: linear-gradient(to right, #ff8c00, #000);
  transform-origin: bottom right;
  transform: rotate(calc(45deg * var(--i)));
  clip-path: polygon(0 0, 56% 0, 100% 100%, 0 56%);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  animation: segmentFade 0.8s ease-in forwards;
  animation-delay: calc(0.1s * var(--i)); /* ✨ Fade متدرج */
  direction: ltr !important;
}

.wheel .number span {
  position: relative;
  transform: rotate(45deg);
  font-size: min(22px, 4.5vw);
  font-weight: 700;
  color: #fff !important;
  text-shadow: 3px 5px 2px rgba(0, 0, 0, 0.15);
  margin-right: min(8px, 1.5vw);
  top: min(18px, 3.5vw);
}

.wheel .number span::after {
  content: "";
  position: absolute;
  font-size: 0.75em;
  font-weight: 500;
}

/* ✨ Glow للقطعة الفايزة */
.wheel .number.active span {
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffa500, 0 0 30px #ff8c00;
}

.number .icon {
  font-size: min(2em, 4vw);
  margin-bottom: min(30px, 6vw);
  transform: rotate(316deg);
  animation: scalePulse 2s ease-in-out infinite;
}

@keyframes scalePulse {
  0% {
    transform: rotate(316deg) scale(1);
  }
  50% {
    transform: rotate(316deg) scale(1.2);
  }
  100% {
    transform: rotate(316deg) scale(1);
  }
}

/* Congratulation Dialog */
.congratulation-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
  padding: min(20px, 5vw);
  box-sizing: border-box;
}

.congratulation-dialog.show {
  display: flex;
}

.dialog-content {
  /* background: linear-gradient(135deg, #c4fb79, #efe859); */
  /* background-color: #E25400; */
  /* background-color: #E67500; */
  /* background-color: #E25400; */
   border-radius: 20px;
  /* border: 2px solid  !important; */
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
    background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-radius: min(20px, 4vw);
  padding: min(30px, 6vw);
  text-align: center;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  /* border: min(4px, 0.8vw) solid #548c1c; */
  border: min(4px, 0.8vw) solid #E25400 !important;
  max-width: min(400px, 90vw);
  width: min(400px, 90vw);
  min-width: min(300px, 80vw);
  animation: slideIn 0.5s ease-out;
  position: relative;
  margin: auto;
}

.dialog-header h2 {
  /* color: #2e590e; */
  color: white;
  font-size: min(2rem, 4vw);
  margin: 0 0 min(20px, 4vw) 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.dialog-body {
  margin: min(20px, 4vw) 0;
}

.prize-icon {
  font-size: min(4rem, 8vw);
  margin-bottom: min(15px, 3vw);
  animation: bounce 1s ease-in-out infinite;
}

.prize-text h3 {
  /* color: #2e590e; */
  color: white;
  font-size: min(1.5rem, 3vw);
  margin: min(10px, 2vw) 0;
}

.prize-text p {
  color: #4f4f4f;
  font-size: min(1.2rem, 2.4vw);
  font-weight: bold;
  margin: min(5px, 1vw) 0;
}

.dialog-footer {
  margin-top: min(20px, 4vw);
}

.close-btn {
  /* background: #2e590e; */
  background-color: #E67500;
  color: white;
  border: none;
  padding: min(12px, 2.4vw) min(30px, 6vw);
  border-radius: min(25px, 5vw);
  font-size: min(1.1rem, 2.2vw);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: min(1px, 0.2vw);
  min-width: min(120px, 24vw);
  min-height: min(44px, 8.8vw);
}

.close-btn:hover {
  /* background: #1a3d08; */
  background-color: #4f4f4f;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Confetti Styles */
#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(2n) {
  background: #4ecdc4;
  width: 8px;
  height: 8px;
  animation-delay: 0.2s;
}

.confetti:nth-child(3n) {
  background: #45b7d1;
  width: 12px;
  height: 12px;
  animation-delay: 0.4s;
}

.confetti:nth-child(4n) {
  background: #96ceb4;
  width: 6px;
  height: 6px;
  animation-delay: 0.6s;
}

.confetti:nth-child(5n) {
  background: #feca57;
  width: 14px;
  height: 14px;
  animation-delay: 0.8s;
}

.confetti:nth-child(6n) {
  background: #ff9ff3;
  width: 8px;
  height: 8px;
  animation-delay: 1s;
}

.confetti:nth-child(7n) {
  background: #54a0ff;
  width: 10px;
  height: 10px;
  animation-delay: 1.2s;
}

.confetti:nth-child(8n) {
  background: #5f27cd;
  width: 12px;
  height: 12px;
  animation-delay: 1.4s;
}

.confetti:nth-child(9n) {
  background: #ffd700;
  width: 10px;
  height: 10px;
  animation-delay: 1.6s;
}

.confetti:nth-child(10n) {
  background: #ff4757;
  width: 8px;
  height: 8px;
  animation-delay: 1.8s;
}

.confetti:nth-child(11n) {
  background: #2ed573;
  width: 14px;
  height: 14px;
  animation-delay: 2s;
}

.confetti:nth-child(12n) {
  background: #ffa502;
  width: 6px;
  height: 6px;
  animation-delay: 2.2s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounceStop {
  0% {
    transform: rotate(var(--angle));
  }
  20% {
    transform: rotate(calc(var(--angle) - 5deg));
  }
  40% {
    transform: rotate(calc(var(--angle) + 3deg));
  }
  60% {
    transform: rotate(calc(var(--angle) - 2deg));
  }
  80% {
    transform: rotate(calc(var(--angle) + 1deg));
  }
  100% {
    transform: rotate(var(--angle));
  }
}

@keyframes segmentFade {
  from {
    opacity: 0;
    transform: rotate(calc(45deg * var(--i))) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(calc(45deg * var(--i))) scale(1);
  }
}

/* Floating Coins */
#coins-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 998;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("./img/coins3.gif");
  background-size: 100% 100%;
  background-repeat: repeat;
  background-position: center;
  will-change: transform, opacity;
  animation: coin-fall 6s linear forwards;
}

@keyframes coin-fall {
  0% {
    transform: translateY(-80px) rotate(0deg) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(1);
    opacity: 0;
  }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
  .container {
    width: min(250px, 85vw);
    height: min(250px, 85vw);
  }

  .spinBtn {
    width: min(50px, 10vw);
    height: min(50px, 10vw);
    font-size: min(12px, 2.5vw);
    border-width: min(6px, 1.2vw);
  }

  /* .spinBtnBottom {
    width: min(100px, 20vw);
    height: min(40px, 8vw);
    font-size: min(16px, 3.5vw);
    margin-top: min(80px, 12vh);
  } */

  .number .icon {
    font-size: min(1.5em, 3vw);
    margin-bottom: min(20px, 4vw);
  }

  .wheel .number span {
    font-size: min(18px, 3.5vw);
    top: min(15px, 3vw);
  }

  /* Logo responsive for small screens */
  .title-wheal {
    width: min(120px, 30vw);
    height: min(120px, 30vw);
    top: min(15px, 2vh);
    left: 50%;
    transform: translateX(-50%);
    max-width: 120px;
    max-height: 120px;
  }

  /* Dialog responsive for small screens */
  .dialog-content {
    max-width: 95vw;
    width: 95vw;
    min-width: 280px;
    padding: min(20px, 4vw);
    margin: min(10px, 2vw);
  }

  .dialog-header h2 {
    font-size: min(1.5rem, 6vw);
  }

  .prize-icon {
    font-size: min(3rem, 12vw);
  }

  .prize-text h3 {
    font-size: min(1.2rem, 4.8vw);
  }

  .prize-text p {
    font-size: min(1rem, 4vw);
  }

  .close-btn {
    padding: min(10px, 2vw) min(25px, 5vw);
    font-size: min(1rem, 4vw);
    min-width: min(100px, 20vw);
    min-height: min(40px, 8vw);
  }
}

/* Small Devices (landscape phones, 768px and down) */
@media (max-width: 768px) {

  body {
    background-size: cover !important;
    height: 100vh !important;
    width: 100% ;
  }


  body::before {
    display: none;
  }



  .title-wheal {
    position: absolute;
    top: min(-50px, -8vh);
    left: 20% !important;
    margin-bottom: 250px !important;
  }

  .title-wheal img {
    margin-top: 45px;
    margin-left: 110px !important;
  }

  .parent-wheal {
    margin-top: 200px !important;
  }

  .container {
    width: min(60vmin, 80vw);
    height: min(60vmin, 80vw);
  }

  .spinBtn {
    width: min(55px, 11vw);
    height: min(55px, 11vw);
    font-size: min(13px, 2.8vw);
  }

  /* .spinBtnBottom {
    width: min(110px, 22vw);
    height: min(45px, 9vw);
    font-size: min(17px, 3.8vw);
    margin-top: min(80px, 12vh);
  } */

  .number .icon {
    font-size: min(1.8em, 3.5vw);
    margin-bottom: min(25px, 5vw);
  }

  .wheel .number span {
    font-size: min(20px, 4vw);
    top: min(16px, 3.2vw);
  }

  /* Logo responsive for medium screens */
  .title-wheal {
    width: min(150px, 25vw);
    height: min(150px, 25vw);
    top: min(18px, 2.5vh);
    left: 50%;
    transform: translateX(-50%);
    max-width: 150px;
    max-height: 150px;
  }

  /* Dialog responsive for medium screens */
  .dialog-content {
    max-width: 90vw;
    width: 90vw;
    min-width: 320px;
    padding: min(25px, 5vw);
  }

  .dialog-header h2 {
    font-size: min(1.8rem, 5vw);
  }

  .prize-icon {
    font-size: min(3.5rem, 10vw);
  }

  .prize-text h3 {
    font-size: min(1.4rem, 4vw);
  }

  .prize-text p {
    font-size: min(1.1rem, 3.2vw);
  }

  .close-btn {
    padding: min(11px, 2.2vw) min(28px, 5.6vw);
    font-size: min(1.05rem, 3vw);
    min-width: min(110px, 22vw);
    min-height: min(42px, 8.4vw);
  }


 


}

/* Medium Devices (tablets, 992px and down) */
@media (max-width: 992px) {
  body::before {
    top: 5px;
    bottom: auto;
    right: 10px;
    left: auto;
    width: 50%;
    height: 25%;
    opacity: 1;
  }

  .container {
    width: min(350px, 70vw);
    height: min(350px, 70vw);
  }

  .spinBtn {
    width: min(58px, 11.5vw);
    height: min(58px, 11.5vw);
    font-size: min(14px, 3vw);
  }

  .number .icon {
    font-size: min(1.9em, 3.8vw);
    margin-bottom: min(28px, 5.5vw);
  }

  .wheel .number span {
    font-size: min(21px, 4.2vw);
    top: min(17px, 3.4vw);
  }
}

/* Large Devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  body::before {
    top: 50px;
    right: 50px;
    width: 25%;
    height: 50%;
    
  }

  .title-wheal img {
    margin-top: 0px;
    margin-left: 0px;
  }


  .container {
    width: min(350px, 28vw);
    height: min(350px, 28vw);
    margin-top: min(200px, 20vh);
  }

  .spinBtn {
    width: min(55px, 4.5vw);
    height: min(55px, 4.5vw);
    font-size: min(14px, 1.2vw);
  }

  .number .icon {
    font-size: min(2.2em, 3.5vw);
    margin-bottom: min(32px, 5vw);
  }

  .wheel .number span {
    font-size: min(24px, 3.8vw);
    top: min(20px, 3.2vw);
  }

  /* Logo responsive for large screens */
  .title-wheal {
    width: min(180px, 15vw);
    height: min(180px, 15vw);
    top: min(25px, 3.5vh);
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
    max-height: 180px;
  }

  /* Dialog responsive for large screens */
  .dialog-content {
    max-width: min(450px, 35vw);
    width: min(450px, 35vw);
    padding: min(35px, 3vw);
  }

  .dialog-header h2 {
    font-size: min(2.2rem, 2.5vw);
  }

  .prize-icon {
    font-size: min(4.5rem, 5vw);
  }

  .prize-text h3 {
    font-size: min(1.6rem, 2vw);
  }

  .prize-text p {
    font-size: min(1.3rem, 1.8vw);
  }

  .close-btn {
    padding: min(14px, 1.2vw) min(35px, 3vw);
    font-size: min(1.2rem, 1.5vw);
    min-width: min(130px, 10vw);
    min-height: min(48px, 4vw);
  }
}

/* tab resposive */

@media (min-width:769px)and (max-width:1023px) {

  .title-wheal img {
    margin-left: 0px !important;
  }

  .parent-wheal {
    margin-top: 45px;
  }

   body::before {
    top: 300px;
    background-image: none !important;
  }

  .form .btn-0 {
    margin-right: 1200px !important;
  }
  
}

/* Extra Large Devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {

  body::before {
    top: 48px;
  }
 
  .container {
    width: min(400px, 25vw);
    height: min(400px, 25vw);
    margin-top: min(250px, 25vh);
  }

  .spinBtn {
    width: min(60px, 4vw);
    height: min(60px, 4vw);
    font-size: min(16px, 1.1vw);
  }

  /* Logo responsive for extra large screens */
  .title-wheal {
    width: min(200px, 12vw);
    height: min(200px, 12vw);
    top: min(-50px, 1vh);
    left: 5%;
    transform: translateX(-50%);
    max-width: 200px;
    max-height: 200px;
  }
}


button-border {
  border: 8px solid #E67500;
  outline: 4px solid;
  border-radius: 100px;
  /* margin-top: 100px !important; */
  /* padding-top: 100px; */
  
}

.button-base {
  /* background-color: #E67500; */
  background-color: rgba(0, 0, 0, 0.5)  ;
  outline: 2px solid black;
  position: relative; /* Gövde içinde konumlama gerekebilir */
  border-radius: 100px;
  margin-top: 100px;
  cursor: pointer;
}

.button {
  border-radius: 100px;
  font-family: "Press Start 2P", cursive;
  font-size: 32px;
  outline: 2px solid black;
  border: 4px solid;
  /* border-left-color: rgb(241,169,25); */
  border-top-color: #E25400;
  border-bottom-color: #E25400;
  border-right-color: #E25400;
  border-left-color: #E25400;
  background-color: #E25400;
  /* background-color: rgb(204,155,46); */
  /* color: #E25400; */
  cursor: pointer;
  color: rgb(35,47,63);
  padding: 20px 30px;
  transform: translateY(-20%);
}

.button:hover {
  transform: translateY(-10%); /* Hover durumunda butonu yukarı kaydır */
}

.button:active {
  transform: translateY(0); /* Butona tıklanırken konumlandırmayı geri al */
}




.form {
  width: 35%;
  height: 350px;
  margin-top: 150px;
/* background-color: rgba(0,0,0,0.4) !important ;  */
  /* backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);  */
  direction: rtl;
  margin: auto;
  padding: auto;
  border-radius: 20px;
  border: 2px solid #000;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
    background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  color: white;
  overflow: hidden;
  /* animation: borderMove 3s linear infinite; */
}

/* .form::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 20px;
  border: 4px solid;
  border-image: linear-gradient(270deg, #ff0, #f00, #0ff, #ff0) 1;
  background: transparent;
  pointer-events: none;
  animation: borderMove 3s linear infinite;
  z-index: 1;
} */
/* @keyframes borderMove {
  0% { border-image-slice: 1; border-image-source: linear-gradient(0deg, #ff0, #f00, #0ff, #ff0); }
  50% { border-image-source: linear-gradient(180deg, #ff0, #f00, #0ff, #ff0); }
  100% { border-image-source: linear-gradient(360deg, #ff0, #f00, #0ff, #ff0); }
} */

.form .form-info {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin-top: 25px;
}

.form .form-info label {
  width: 100%;
  height: auto;
  padding-right: 15px;
  cursor: pointer;
  margin-bottom: 8px;
  padding-top: 15px;
  color: white;
  font-size: 18px;
}

.form .form-info .form-control  {
  width: 85%;
  height: auto;
  margin-right: 15px;
  direction: rtl;

}

.form .btn-0 {
  margin-right: 250px !important;
  margin-top: 30px;
  /* margin-bottom: 25px; */
  background-color: #E25400;
  color: white;
  width: 25%;
}


@media (max-width:767px) {

  body {
    background-size: cover !important;
    background-repeat: no-repeat;
    width: 100%;
  }



  .form {
  width: 95%;
  
}

.form .btn-0 {
  margin-right: 130px !important;
  margin-top: 30px;
  /* margin-bottom: 25px; */
  background-color: #E25400;
  color: white;
  width: 30%;
}


  
}


@media (min-width:768px)and (max-width:1023px) {
  


    .form {
  width: 95%;
  
}



}