@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
    font-family:  'Roboto', sans-serif;
  }
  
  p{
    text-align: justify;
    margin-bottom: 3px;
    font-family:  'Roboto', sans-serif;
  }

  div{
    font-family:  'Roboto', sans-serif;
  }
  
  a {
    /* color: white; */
    transition: all 0.3s ease;
    text-decoration: none ;
    outline: none ;
    
  }
  a:active,
  a:hover {
    text-decoration: none;
    outline: 0 none;
    transition: all 0.3s ease;
  }

  .header-links a{
      padding: 8px 14px;
      color: #fff;
      font-size: 1.1em;
  }

  .header-links a:hover{
    color: rgb(173, 226, 247);
  }

  .form-section{
    border-radius: 14px;
    box-shadow: 6px 6px 10px grey;
    border-left: 1px solid silver ;
  }

  .form-heading{
    
    border-radius: 14px 14px 0 0;
    background-color: #2b5797;
    color: white;
    padding: 10px;
  }

  .mandatory{
    color: red;
    padding-left: 3px;
  }

  .form-body{
    padding: 0 150px;
  }
  .form-body2{
    padding: 0 40px;
  }

  .form-wizard-steps {
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.form-wizard-progress {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.form-wizard-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: #99b433;
  width: 100%;
}
.form-wizard-step {
  position: relative;
  float: left;
  width: 33.33%;
  padding: 0 5px;
  margin: auto;
  text-align: center;
}
.form-wizard-step-icon {
  /* background: #99b433; */
 
}
.form-wizard-step-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-top: 4px;
  background: #ddd;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.form-wizard-step-icon span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.form-wizard-step p{
  text-align: center;
  margin-top: 5px;
  color: #ddd;
  font-weight: 600;
}

.outline{
  border: 1px solid #2b5797;
  width: 100%;
  
 
}

.details{
  border-radius: 14px;
  border: 1px solid silver ;
}

.student img{
  border: 1px solid silver;
  border-radius: 8px;
  margin-bottom: 10px;
}

.submitted-img img{
  border: 1px solid black;
  
}

input.largerCheckbox {
  width: 30px;
  height: 30px;
}

.table-bordered td, .table-bordered th {
  border: 1px solid black;
}
.gap{
  padding-top: 60px;
}