
body{
    font-family:'Open Sans Condensed';
}

.foo{
background-color: black ;
}
.topnav {
    overflow: hidden;
    background-color: white;
}

.topnav a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: white;
    color: white;

}
.font-bold{
    font-weight: bolder;
}
#classBtn li{
    background-color: yellow;
    list-style: none;
    text-align: center;
    padding: 1% 3%;
}
#classBtn li a{
    text-decoration: none;
    color: black;
}
#nav-head{
    font-size: 1.6rem;
}
.sub-head{
    position: relative;
    color: gray;
    top: -20px;
    left: 5%;
    margin: 0 10%;
    font-size: 0.7rem;
    
}
@media screen and (max-width: 430px) {
    #nav-head{
        font-size: 0.9rem;
    }
    .sub-head{
        font-size: 0.7rem;
        left: 15%;
    }
}
@media screen and (max-width: 321px) {
    #nav-head{
        font-size: 0.7rem;
    }
    .sub-head{
        font-size: 0.5rem;
        left: 17%;
    }
}
.row-content {
    margin: 10px;
    padding: 20px 0px;
    border-bottom: 0px;
    min-height: 600px;
}
.title-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12;
    margin-right:0px;
}
/* ************************ Form ******************************* */

.login-form{
  width: 500px;
  height: 600px;
  background-color:#FFF5FD;
   justify-content: center;
   align-content: center;
}
.center {
    display: block;
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
  }
  .rad-label {
    display: flex;
    align-items: flex-start;
    border-radius: 100px;
    padding: 14px 16px;
    margin: 10px 0;
  
    cursor: pointer;
    transition: .3s;
  }
  
  .rad-label:hover,
  .rad-label:focus-within {
    background: hsla(0, 0%, 80%, .14);
  }
  
  .rad-input {
    position: absolute;
    right:10;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
  }
  
  .rad-design {
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: linear-gradient(to right bottom, hsl(154, 97%, 62%), hsl(225, 97%, 62%));
    position: relative;
  }
  
  .rad-design::before {
    content: '';
    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: hsl(0, 0%, 90%);
    transform: scale(1.1);
    transition: .3s;
  }
  
  .rad-input:checked+.rad-design::before {
    transform: scale(0);
  }
  
  .rad-text {
    color: hsl(0, 0%, 60%);
    margin-left: 5px;
    letter-spacing: 2px;
    font-weight: normal;
    transition: .3s;
  }
  
  .rad-input:checked~.rad-text {
    color: hsl(0, 0%, 40%);
  }
  label{
      padding: 5px;
      text-align: left;
      margin-left: 0;
  }
  input[type=text] {
   
    border: none;
    border-bottom: 2px solid #0DB8DE;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding-left: 0px;
    color: #ECF0F5;
}

input[type=password] {
   
    border: none;
    border-bottom: 2px solid #0DB8DE;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    padding-left: 0px;
    margin-bottom: 20px;
    color: #ECF0F5;
}


 