*{
    padding: 0;
    margin: 0;
}

body{
  background-color: rgba(247,247,247,0.4);
}

.container-button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.about-section {
    padding: 70px;
    text-align: center;
    color: white;
}

video {
    object-fit: cover;
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.9;
}
/**************************************/
.button {
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 22px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 300px;
  margin-top: 15px;
  border-radius: 25px;
  box-shadow: 0 2px 4px 0 #ccc;
}

.button1 {
  background-color: #BD1616;
  color: white;
  border: 2px solid #BD1616;
}

.button1:hover {
  background-color: white;
  color: black;
}

.button0 {
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 22px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 300px;
  margin-top: 15px;
  border-radius: 25px;
  box-shadow: 0 2px 4px 0 #ccc;
}

.button2 {
  background-color: #BD1616;
  color: white;
  border: 2px solid #BD1616;
}

.button2:hover {
  background-color: white;
  color: black;
}
/*************************************/
input[type=email], input[type=password],input[type=text],input[type=number],select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.button-inside-flex{
    display: flex;
    justify-content: center;
}

.button-inside {
  background-color: #49c520;
  color: white;
  text-align: center;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 97%;
  text-decoration: none;
  display: block;
}

.button-page:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #dc143c;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

.container {
  padding: 16px;
}

.container-down{
    direction: ltr;
}

span.psw {
  float: right;
  padding-top: 16px;
}

.modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
  direction: rtl;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto;
  border: 1px solid #888;
  width: 80%; 
}

@media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}