*{
    margin:0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


/* Header  detail Section Started */
.header-details-section h1{
    color: #ffc107;
    font-weight: 700;
}

.Header{
    font-size: 19px;
    color:white;
    min-height: 50px;
}

.header-details-section{
    background: #00203FFF;
}

.second-row{
    min-height: 50px;
    background-color: #ffc107;
}

.second-row a h4{
    color: #00203FFF;
    font-weight: 700;
}


/* Add Teacher Section start */
.add_teachers{
    box-sizing: border-box;
    /* width: 300px; */
    /* height: 300px; */
    /* background: rgba(217, 217, 217, 0.58); */
    border: 1px solid gray;
    /* box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22); */
    backdrop-filter: blur(6px);
    border-radius: 17px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    user-select: none;
    font-weight: bolder;
    color: black;
  }
  
  .add_teachers:hover{
    border: 1px solid #04014a;
    transform: scale(1.05);
  }
  
  .add_teachers:active {
    transform: scale(0.95) rotateZ(1.7deg);
  }
  
  .add_teachers h2 ion-icon{
    font-size: 5rem;
    color: #04014a;
  }
  /* Add Teacher Section end */


  /* Wrong Password */

  .error {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    position: absolute;
    top: 10%;
    left: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #EF665B;
    border-radius: 5px;
    box-shadow: 0px 0px 5px -3px #111;
  }
  
  .error__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
  }
  
  .error__icon path {
    fill: #fff;
  }
  
  .error__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
  }
  
  .error__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }
  
  .error__close path {
    fill: #fff;
  }

