
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

::selection {
    color: black;
    background: #7df373;
  }
:root {
  --primary-bg-color: #eee;
  --secondary-bg-color: #fff;
  --primary-text-color: #666;
  --secondary-text-color: #999;
}

body.activeDark {
  --primary-bg-color: #222;
  --secondary-bg-color: #333;
  --primary-text-color: #fff;
  --secondary-text-color: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s linear;
}

body {
  background: var(--primary-bg-color);
}

.container {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.container .content {
  width: 400px;
  background: var(--secondary-bg-color);
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.container .content p {
  line-height: 2;
  color: var(--primary-text-color);
}

#theme-toggler {
  position: fixed;
  bottom: 10px;
  right: 25px;
  padding: 10px 10px;
  font-size: 30px;
  background: var(--secondary-bg-color);
  color: #7df373;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
}

.switchPageButton{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    background-color: #7df373;
    color: black;
    text-decoration: none;
}
.switchPageButton:hover{
    background-color: black;
    color: #7df373;
    outline: none;
}

.adminButtons{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
  background-color: #7df373;
  color: black;
  text-decoration: none;
}
.adminButtons:hover{
  background-color: black;
  color: #7df373;
  outline: none;
}

.navbar{
    justify-content: space-between;
    background-color: white;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    position: fixed;
    overflow: hidden;
    z-index: 1;
}
.navbarLearn{
    justify-content: space-between;
    background-color: white;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    width: 84%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    position: fixed;
    overflow: hidden;
    z-index: 1;
}

.navbarContained{
    justify-content: space-between;
    background-color: white;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    width: 84%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    position: fixed;
    overflow: hidden;
    z-index: 1;
}

.logoNavbar{
    width: 8%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
}
.logoNavbarAc{
  width: 5%;
  padding: 10px;
  display: inline-block!important;
  vertical-align: text-top!important;
}
.logoNavbarDashboard{
  width: 15%;
  padding: 10px;
  display: inline-block!important;
  vertical-align: text-top!important;
}

.formWrapper{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 70%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.someMargin{
  margin-top: 12%;
}
.myForm{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
}
.register-text{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #45557d;
    text-align: center;
    margin-bottom: 60px;
}

.form-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
}

.form-rowCourse{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 10px;
    width: 60%;
    color: rgba(0, 0, 0, 0.87);
    display: flex;
    margin: auto;
    margin-bottom: 2%;
    height: 54px;
    border-radius: 4px;
    outline: none;
}


.form-rowJob{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
}
.position-relativeButtons{
    position: relative;
    bottom: 10px;
}


.form-row-js{
    display: block!important;
    flex-direction: row;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
}

.form-rowEd{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
    width: 92%;
    margin: auto;
}


.form-placeholder{
    color: rgba(0, 0, 0, 0.6);
    width: 24%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    outline: none;
}


.form-placeholderSingle{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    outline: none;
}

.form-placeholderSingleEd{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    outline: none;
    overflow: auto;

}

.form-placeholderSingleEd:hover {
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    width:220%;
}


.form-placeholderSingleJs{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-left: 5%;
    outline: none;
}
.form-placeholderSingleJsEd{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-left: 5%;
    outline: none;
    overflow: hidden;
}

.form-placeholderSingleJsEd:hover {
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    width:200%;
}


.form-placeholderLogin{
    color: rgba(0, 0, 0, 0.6);
    width: 60%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    outline: none;
}
.form-placeholderPassword{
  color: rgba(0, 0, 0, 0.6);
  width: 80%;
  height: 56px;
  padding: 16px 14px;
  border-radius: 4px;
  outline: none;
}
.submitButton{
    display: flex;
    border-top: solid 2px lightgray;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    color: black;
    background-color: #7df373;
    width: 50%;
    margin-top: 40px;
    margin: auto;
}  

.submitButtonPassword{
  display: flex;
  border-top: solid 2px lightgray;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  font-family: "Roboto","Helvetica","Arial",sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 6px 8px;
  border-radius: 4px;
  color: black;
  background-color: #7df373;
  width: 80%;
  margin-top: 40px;
  margin: auto;
}   
.submitButtonPassword:hover{
  background-color: black;
  color: #7df373;
}


.submitButtonLogin{
    display: flex;
    border-top: solid 2px lightgray;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    color: black;
    background-color: #7df373;
    width: 60%;
    margin-top: 40px;
    margin: auto;
}   
.submitButtonLogin:hover{
    background-color: black;
    color: #7df373;
}

.submitButton:hover{
    background-color: black;
    color: #7df373;
}

#labelEmployment{
    color: inherit;
}

.login-text{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #45557d;
    text-align: center; 
    margin-bottom: 40px;
}
.change-password-text{
  margin: 0;
  font-family: "Roboto","Helvetica","Arial",sans-serif;
  font-weight: 400;
  font-size:large;
  line-height: 1.167;
  letter-spacing: 0em;
  color: #45557d;
  text-align: center; 
  vertical-align: middle;
}
.formWrapperLogin{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 50%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 3%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}


.formWrapperTracks{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 50%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 9%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.formWrapperTracks.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 50%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 9%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}


.formWrapperClasses{
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
  height: auto;
  align-self: center;
  margin-top: 12%;
  margin-bottom: 12%;
  overflow: auto;
  display: flex;
  padding: 9%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}
.formWrapperClasses a{
  text-decoration: none;
  font-weight: bold;
}

.formWrapperClasses.activeDark{
  background-color: black;
  color: rgba(255, 255, 255, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
  height: auto;
  align-self: center;
  margin-top: 12%;
  margin-bottom: 12%;
  overflow: auto;
  display: flex;
  padding: 9%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}


.formWrapperLessonCreate{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}



.borderForm{
    border-bottom: 1px solid gainsboro;
    width: 90%;
}

.formWrapperDashboard{
    background-color: #7df373;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 70%;
    height: 400px;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.loginMessage{
    font-size: 26px;
}
.formWrapperAdmin{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    height: auto;
    align-self: center;
    margin-top: 5%;
    margin-bottom: 0%;
    display: flex;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.formWrapperStudentProgress{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 0%;
    padding: 40px;
    display: flex;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    width: 90%;

}

.formWrapperAdminOne{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 0%;
    padding: 40px;
    display: flex;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

.empty-div{
    padding: 0;
    width: 0px;
    height: 0px;
    margin: 0px;
    border: 0;
}


.addRemoveButtons{
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: gainsboro;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    color: #7df373;
    border: none;
    background-color: transparent;
    margin: 5px;
}

.addRemoveButtonsJob{
    user-select: none;
    width: 8%;
    height: auto;
    border-radius: 5px;
    display: inline-block;
    fill: gainsboro;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    font-size: 16px;
    border: none;
    margin: 5% 10%;
    background-color: #7df373;
    color: black;
    text-decoration: none;
    padding: 5px 10px;
}

.addRemoveButtonsJob:hover{
    background-color: black;
    color: #7df373;
    outline: none;

}
.searchBar{
    position: relative;
    top: 10%;
    width: 70%;
    margin: auto;
    
}
.searchBarForm{
    width: 80%;
}
.search-form-input{
    overflow:hidden;
    white-space:nowrap;
    width: 70%!important;
}
.clear-search-session{
    background-color: #7df373; /* Blue background */
    border: none; /* Remove borders */
    color: black; /* White text */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
    margin: auto;
    width: 5%;

}

.terms{
    margin-top: -5%;
}

/* The side navigation menu */
.sidenav {
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
  height: 100%; /* 100% Full-height */
  width: 16.5%; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #7df373; /* gREENN*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* The side navigation menu ADMIN PAGE */
/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
  }
  
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

.sidenavAdmin {
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    height: 100%; /* 100% Full-height */
    width: 0%; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #7df373; /* Orange*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }

  /* The navigation menu links */
.sidenavAdmin a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: small;
    color: black;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenavAdmin a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenavAdmin .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

/* .leftAdmin{
    justify-content: inherit;
} */
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
  margin-left: 16.5%;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {

  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
.fa-angle-left{
  color: #7df373;
  font-size: 30px;
  bottom: 20px;
  right: 20px;
}

.left-navbar{
    display: flex;
    align-items: center;
}

.left-navbar span{
    font-size: 200%;
    cursor: pointer;
    margin-right: 20px;
}

.logoNavbarLearn{
    width: 65%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
}

/* Collapsable Menu */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #7df373;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
  }
  


  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: black;
    color: #7df373;
    border-radius: 10px;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #7df373;
    color: black;
  }
  .list-group{
    background-color: #7df373;
  }

  .list-group-item{
    background-color: #7df373;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem;
  }
.courseListItem{
    color: inherit;
    text-decoration: none;
}

  
  .list-group-item2{
    font-size: 16px!important;
    background-color: #7df373;
    color: black;
  }

  .list-group-item2:hover{
    font-size: 15px!important;
    background-color: black;
    border-radius: 5px;
  }

#main2{
    padding: 20px;
    position: relative;
    top: 150px;
    margin-left: 16.5%;
}


#main2Admin{
    padding: 20px;
    position: relative;
    top: 150px;
    margin-left: 16.50;
}

#main2Dashboard{
  padding: 20px;
  position: relative;
  margin-left: 16.50;
}
#mainDashboard {
  transition: margin-left .5s;
  padding: 20px;
  margin-left: 0%;
}

#mainAdmin {
    transition: margin-left .5s;
    padding: 20px;
    margin-left: 0%;
  }

/* dark mode */


.formWrapper.activeDark{
    background-color: black;
    color: white;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 70%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}


#labelEmployment.activeDark{
    color: white;
}


.login-text.activeDark{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #7df373!important;
    text-align: center; 
    margin-bottom: 40px;
}

.formWrapperLogin.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 50%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

#contentLearning.activeDark{
    color: white;
}


.register-text.activeDark{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #7df373!important;
    text-align: center;
    margin-bottom: 60px;
}


.navbar.activeDark{
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.285);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    position: fixed;
  }



/* End Dark Mode */



.fa-check{
    content: "\f14a";
    color: black;
    font-size: 18px;
}


[aria-current="notClickableLesson"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
  }

.download-csv-search{
    width: 12%;
}

.table-head-admin{
    --bs-table-bg: #7df373;
}


/* Upload Assignment */
#todo_submit_container{
    background: linear-gradient(0deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.1)),#121212;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 5%);
    display: flex;
    flex-wrap: wrap;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    justify-content: center;
    padding: 21px 30px 50px;
    width: 100%;
    margin-top: 10%;
}
#todo_submit_container h5{
    font-size: 2.25rem;

}

.form-rowGitHub{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
    width: 100%;
    align-items: center;
    justify-content: center;
}



.switchPageButtonGitHub{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    background-color: #7df373;
    color: black;
    text-decoration: none;
    height: 33px;
    width: 5%;
    margin-left: 3%;
}

.switchPageButtonGitHub:hover{
    background-color: black;
    color: #7df373;
    outline: none;
}


#todo_submit_container form svg {
    color: #8a8a8a;
    font-size: 40px
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}
svg:not(:root).svg-inline--fa {
    overflow: visible;
}
.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
.myFormGitHub{
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
    align-items: center;
}

.form-placeholderGitHub{
    color: rgba(0, 0, 0, 0.6);
    width: 60%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    outline: none;
    background: lightgray;
    margin-left: 3%;
}

.alertGitHub{
    color: red;
}

.fa-angle-left{
    color: #7df373;
    font-size: 30px;
    position: relative;
    bottom: 20px;
    right: 20px;
}

.trackIcon{
    width: 100%;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.trackLink{
    text-decoration: none;
    color: inherit;
    margin: auto;
    text-align: center;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .textColor{
    color: inherit;
  }

  .lessonImage{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 4%;
    margin-bottom: 4%;
  }
  .iframeVideo{
    width: 100%;
    height: 480px;
  }

.selectProgress{
    width: 25%;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  .submit-assignment-text{
    color: black;
  }
.signUpAsAcompany{
  color: #E5770A;
  font-size: small;
  text-decoration: none;
}
.signUpAsAcompany:hover{
  color: black;
}

.orLogin {
  width: 50%; 
  text-align: center; 
  border-bottom: 1px solid silver; 
  line-height: 0.1em;
  margin: 10px 0px 20px; 
  font-size: x-small;
  margin: auto;
  padding-top: 5%;
  background: white
} 
.orLogin.activeDark {
  width: 50%; 
  text-align: center; 
  border-bottom: 1px solid silver; 
  line-height: 0.1em;
  margin: 10px 0px 20px; 
  font-size: x-small;
  margin: auto;
  margin-top: 2%;
  background: black
} 

.orLogin span { 
  background:inherit; 
  padding: 5px; 
  color: #E5770A;
  border-radius: 100%;
  border: 1px solid silver;
}

.user-info{
  font-size: larger;
}

.profileImage{
  border-radius: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-style: none;
}
.upload_profile_pic_label{
  border-radius: 100%;
  border: 2px solid hsla(0,0%,100%,.2);
  cursor: pointer;
  display: block;
  height: 86px;
  margin: 0 auto 14px;
  object-fit: cover;
  padding: 4px;
  position: relative;
  width: 86px;
}
.upload_profile_pic_inputImage{
  display: none;
  overflow: visible;
}
.profilePicSvg{
  display: none;
  overflow: visible;
}
.profile_btn_icon{
    background-image: url(https://assets.codingdojo.com/learn_platform/global/profile_btn_icons.png);
    background-repeat: no-repeat;
    display: flex;
    height: 20px;
    margin-right: 30px;
    width: 20px;
    background-position: -155px;
  }

#show_reset_password_btn{
  display: flex;
    position: relative;
    text-align: left;
    background: black;
    border: none;
    color: #fff!important;
    opacity: 1!important;
    outline: none;
    padding: 10px 10px;
    text-align: left;
    text-decoration: none;
    width: 100%;
    border-radius: 10px;
}

.modal-backdrop {
  z-index: -1;
}
.container-fluid{
  width: 230px!important;
}
.submitButtonAccess{
  display: flex;
  border-top: solid 2px lightgray;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  font-family: "Roboto","Helvetica","Arial",sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 6px 8px;
  border-radius: 4px;
  color: black;
  background-color: #7df373;
  width: 100%;
  margin-top: 40px;
  margin: auto;
}  

.profileImage:hover{
  transform: scale(1.2);

}

video {
  /** Simulationg background-size: cover */
  object-fit: cover;
  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;

}
.navIcons{
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 650px) {


.form-row {
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.form-placeholder{
    color: rgba(0, 0, 0, 0.6);
    width: 100%!important;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}
.form-rowEd{
    display: block!important;
    justify-content: center;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.87);
    width: 92%;
    margin: auto;
}
.form-placeholderSingle{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}
.position-relativeButtons{
    position: relative;
}

.addRemoveButtonsJob{
    user-select: none;
    width: 40%!important;
    height: auto;
    border-radius: 5px;
    display: inline-block;
    fill: gainsboro;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    font-size: 16px;
    border: none;
    margin: 5% 10%;
    background-color: #7df373;
    color: black;
    text-decoration: none;
    padding: 5px 10px;
}
  .logoNavbar{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }
  .logoNavbarAc{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }

  .formWrapperLogin.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .navIcons{
    justify-content: space-between;
  }
  .fa-angle-left{
    color: #7df373;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
}
  
  .formWrapper {
      background-color: #fff;
      color: rgba(0, 0, 0, 0.87);
      transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
      border-radius: 4px;
      box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
      width: 90%;
      height: auto;
      align-self: center;
      margin-top: 40%;
      margin-bottom: 5%;
      overflow: auto;
      display: flex;
      padding: 40px;
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.5;
      letter-spacing: 0.00938em;
  }
  .formWrapperManual {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .formWrapperLogin{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    /* width: 50%; */
    width: 100%!important;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 5%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.formWrapperLogin2{
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
  width: 90%;
  height: auto;
  align-self: center;
  margin-top: 30%;
  margin-bottom: 5%;
  overflow: auto;
  display: flex;
  padding: 3%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}


  .form-row {
      display: block;
      margin: 0;
      margin-bottom: 5px;
      margin-top: 5px;
  }
  .fa-angle-left{
    color: #7df373;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
}
  .form-placeholder{
      color: rgba(0, 0, 0, 0.6);
      width: 100%!important;
      min-width: 93%!important;
      height: 56px;
      padding: 16px 14px;
      border-radius: 4px;
      margin-left: 0!important;
      margin-right: 0!important;
      margin-bottom: 10px;
      outline: none;
  }
  .form-rowEd{
      display: block!important;
      justify-content: center;
      margin-bottom: 10px;
      color: rgba(0, 0, 0, 0.87);
      width: 92%;
      margin: auto;
  }
  .form-placeholderSingle{
      color: rgba(0, 0, 0, 0.6);
      width: 90%;
      height: 56px;
      padding: 16px 14px;
      border-radius: 4px;
      margin-bottom: 10px;
      outline: none;
  }
  .formWrapperLogin.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 12%;
    margin-bottom: 12%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

  .addRemoveButtons{
      user-select: none;
      width: 40%!important;
      height: auto;
      border-radius: 5px;
      display: inline-block;
      fill: gainsboro;
      flex-shrink: 0;
      transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
      font-size: 1.5rem;
      font-size: 16px;
      border: none;
      margin: 5% 10%;
      background-color: #FFE7DA;
      color: #E5770A;
      text-decoration: none;
      padding: 5px 10px;
  }
}
@media all and (max-width: 768px) {


  .navIcons{
    justify-content: space-between;
  }
  .form-placeholderSingle{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}
  .form-row {
    display: block;
    margin: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}
  .formWrapper {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .formWrapperLogin{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    /* width: 50%; */
    width: 100%!important;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 5%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .form-placeholderLogin{
      color: rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 56px;
      padding: 16px 14px;
      border-radius: 4px;
      outline: none;
  }
  .fa-angle-left{
    color: #7df373;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
  
  
  .application-text{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #66c100;
    text-align: center; 
  }
  .form-check{
      width: 100%!important;
      padding: 0; 
  }
  .checkBoxRegister{
      padding: 0!important;

  }
  .navLeft{
      justify-content: center;
  }
  .navRight{
      justify-content: center!important;
      text-align: center;
  }
  .navRight a{
    margin-top: 5px;
  }
  .navbar{
      justify-content: center;
  }
  .logoNavbar{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }
  .logoNavbarAc{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }
  .border-checkBox{
    border:  0.5px solid silver;
    border-radius: 10px;
  }
  .formWrapperLogin.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 5%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
}
  
@media all and (max-width: 820px) {

  .navIcons{
    justify-content: space-between;
  }
  .form-placeholderSingle{
    color: rgba(0, 0, 0, 0.6);
    width: 90%;
    height: 56px;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}
  .form-row {
    display: block;
    margin: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}
  .formWrapper {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 40px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .formWrapperLogin{
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    /* width: 50%; */
    width: 100%!important;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 5%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
  .form-placeholderLogin{
      color: rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 56px;
      padding: 16px 14px;
      border-radius: 4px;
      outline: none;
  }
  .fa-angle-left{
    color: #7df373;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
  
  
  .application-text{
    margin: 0;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.167;
    letter-spacing: 0em;
    color: #66c100;
    text-align: center; 
  }
  .form-check{
      width: 100%!important;
      padding: 0; 
  }
  .checkBoxRegister{
      padding: 0!important;

  }
  .navLeft{
      justify-content: center;
  }
  .navRight{
      justify-content: center!important;
      text-align: center;
  }
  .navRight a{
    margin-top: 5px;
  }
  .navbar{
      justify-content: center;
  }
  .logoNavbar{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }
  .logoNavbarAc{
    width: 30%;
    padding: 10px;
    display: inline-block!important;
    vertical-align: text-top!important;
  }
  .border-checkBox{
    border:  0.5px solid silver;
    border-radius: 10px;
  }
  .formWrapperLogin.activeDark{
    background-color: black;
    color: rgba(255, 255, 255, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(125, 243, 115, 1), 0px 8px 10px 1px rgba(125, 243, 115, 1), 0px 3px 14px 2px rgba(125, 243, 115, 1);
    width: 90%;
    height: auto;
    align-self: center;
    margin-top: 40%;
    margin-bottom: 5%;
    overflow: auto;
    display: flex;
    padding: 5%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
}

.forgotPasswordText{
  color: inherit;
  text-decoration: none;
}

.navbar span{
  font-size: 200%;
}