@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
/*  background: rgb(255,120,61);*/
/*background: linear-gradient(140deg, rgba(255,120,61,1) 39.5%, rgba(49,138,140,1) 39.5%);*/
}

.signup_title{
  width: 90%;
  margin: auto;
  margin-top: 100px;
}
.signup_title h1{
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  color: rgb(51,51,51);
}
.signup_title p{
  margin-top: 10px;
  color: rgb(166,166,166);
  margin-bottom: 30px;
  font-family: sans-serif;
  /*color: #fff;*/
}
.signup_title p a{
  text-decoration: none;
   color: #000; 
  
}
.signup_box{
  /* border: 1px solid red; */
  width: 90%;
  margin: auto;
}
.signup_box .form_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 25px;

}
.signup_box .form_row label{
  display: block;
  font-size: 20px;
  font-weight: bold;
  font-family: sans-serif;
  /* color: rgb(68,68,68); */
  /*color: #fff;*/
}
.signup_box .form_row input,.signup_box .form_row select{
  font-size: 18px;
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius:4px;
  box-shadow: 0px 0px 2px 0px gray;
  border: 0;
}
.signup_box .form_row input:focus,.signup_box .form_row select:focus{
  box-shadow: 0px 0px 5px 1px var(--btn-primary);
  border:0;
  outline: none;
}.form_row .form_col{
  position: relative;
}
.form_row .form_col p{
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  color: rgb(255,0,0);
  font-weight: bold;
}
#pass_title{
  top:75px;
  left: 0;
  text-align: left!important;
  font-size: 13px;

}
.course .course_img{
  width: 500px;
  height: auto;
  margin: auto;
  margin-top: 50px;
}
.course .course_img img{
  width: 400px;
  height: auto;
  display: block;
  margin: auto;
  height: auto;
  border-radius: 5px;
  box-shadow:0px 0px 5px 1px gray;
}
.course h3{
  text-align: center;
  display: block;
  color: rgb(255,120,61);
  font-size: 25px;
}
.course p{
  text-align: center;
  display: block;
  color:rgb(255,120,61);
  font-size: 20px;
  font-weight: bolder;
  margin-bottom: 30px;
}
.course input{
  font-weight: bold;
  width: 40%;
  font-size: 18px;
  padding: 10px 50px;
  background: #fff;
  cursor: pointer;
  color: var(--btn-primary);
  border: 2px solid var(--btn-primary);
  border-radius: 5px;
  margin: auto;
  display: block;
  margin-bottom: 40px;
  transition: .2s;
}
.course input:hover{
  color: #fff;
  background: var(--btn-primary);

}
@media only screen and (max-width:766px){
  .signup_title{
    margin-top: 100px;
  }
  .signup_title h1{
      font-size: 30px;
  }
  .signup_title p{
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .signup_box .form_row{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }
  .course .course_img{
    width: 450px;
    margin: auto;
    margin-top: 50px;
  }
}
@media only screen and (max-width:500px){
  .course .course_img{
    width: 100%;
    height: auto;
  }
  .course .course_img img{
    width: 100%;
    height: auto;
  }
  .course .course_img input{
    width: 150px;
    padding: 5px 2px;
  }

}
