<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  margin: 0;
  font-family: "droidarabickufi";
}
body {
  background-image: url('img/p1bg.jpg');
}
header {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 5px;
  }
header img {
width: 11%;
margin: 1% 0 0 7%;

}
html {
  scroll-behavior: smooth;
}

.nav {
  display: inline-block;
 position: absolute;
 right: 7%;
 top: 5%;


}
.nav a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-left: 20px;
  float: left;
  
}
.nav a:hover{

color: purple;
}

/* masking body background */

.bg{
  background-color: rgba(250, 250, 250, 0.7 );
width: 100%;
padding-bottom: 200px;
}
/* style of alert shown after form submit */

.alert {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
text-align: center;
background-color: rgba(152, 97, 214, 1 );
width: 100%;
color: white;
font-size: 25px;
border-radius: 5px;
padding:200px ;

}

#regForm {
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0px auto;
  padding: 50px 20px 20px 150px;
  width: 55%;
  text-align: right;
font-size: 20px;
color: rgb(70, 70, 70);
position: relative;
margin-top: 50px;
}

h1 {
  text-align: center;  
}

/* Form input style */

input {

  background-color: rgba(252, 252, 252, 0.7);
  padding: 5px;
  width: 60%;
  font-size: 15px;
  border: 1px solid #ececec;
  border-radius: 5px;
  text-align: right;
}

/* Mark input boxes that gets an error on validation */
input.invalid {
  background-color: #ffdddd;
  content: "please enter this";
}




/* Hide all steps by default */
.tab {
  display: none;
}

button {
  background-color: rgb(152, 97, 214);
  color: #ffffff;
  border: none;
  padding: 5px 20px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;

}
#submit-btn {
  display: none;

}
button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form */
.step {
  height: 20px;
  width: 20px;
  margin: 0 30px;
  background-color: #757575;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.steptxt {
position: relative;
top: 20px;
right: 80px;
display: inline-block;
font-size: 15px;
color: rgb(56, 56, 56);
}

.step.active {
  opacity: 1;
  background-color: rgb(152, 97, 214);

}

/* Mark the steps that are finished and valid */
.step.finish {
  background-color: rgb(152, 97, 214);
  opacity: 1;

}

/* check order form *** hidden by default to be shown by function read() on app.js */
#readdata {
  margin-left: auto;
  margin-right: auto;
  width: 32%;
  display: none;
  }
  /* table is hidden by default (inline set) to be shown by function getdata() on app.js */
  
  #readdata table, th, td {
    border: 1px solid black;
    border-radius: 4px;
  width: 500px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  
  }
  
  /* visible by default to to be hidden by function "read() on app.js */
  
  #mainaddr {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
#social  {font-size: 16px;
  float: right;
  color: white;
  background-color: rgb(58, 57, 57);
width: 100%;
padding: 25px;
position: relative;
bottom: -100px;

}



@font-face {
  font-family: droidarabickufi;
  src: url(sources/DroidArabicKufi.woff);
}</pre></body></html>