body{
    margin: 0;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Alegreya", serif;
    font-size: 18px;
}

.header{
    width: 100%;
}

.header .container{
  padding: 0.5% 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu__toggle {
    opacity: 0;
  }

  .menu__btn {
    display: flex; 
    align-items: center;
    position: fixed;
    top: 10px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 10;
  }

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #003181;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    text-align: center;
    background-color: #000000;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    z-index: 5;
  }

  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #fefcfc;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
  }
  .menu__item:hover {
    background-color: #1e1f1f;
  }
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  .menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  transition-duration: .25s;
}
.menu__box {
  transition-duration: .25s;
}
.menu__item {
  transition-duration: .25s;
}

.nav_icon .line.middle{
    margin-top: 5px;
    margin-bottom: 5px;
}

.lang .link{
    position: relative;
    color: black;
    text-decoration: none;
    transition: color .4s;
}

.lang .link.active{
    color: blue;
}

.lang .link:first-child::after{
    content: " / ";
    color: black;
    font-weight: bold;
}

.lang .link:hover{
    color: rgba(0, 0, 0, 0.7)
}

.lang .link.active:hover{
    color: rgba(0, 0, 255, 0.7)
}

.main {
    position: relative;
}

.row {
    max-width: 800px;
    border-radius: 15px;
    border: 2px solid black;
    margin: 50px auto;
    padding: 40px;
}

@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        max-width: 100%;
    }
}

*{
    box-sizing: border-box;
}

.container {
    padding: 16px;
    background-color: white;
}
  

input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border-radius: 15px;
    border: none;
    background: #f1f1f1;
}
  
input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.loginbtn {
    background-color: #1348c3;
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}
  
.loginbtn:hover {
    opacity: 1;
}
  
  a {
    color: dodgerblue;
}

/* .forgotpasswordbtn-container {
  display: flex;
  justify-content: left;
} */

.forgotpasswordbtn{
    text-align: left;
    background-color: #ffffff;
    color: rgb(5, 5, 5);
    border: none;
    cursor: pointer;
    width: 25%; 
    opacity: 0.9;
}
  

.signin {
    background-color: #f1f1f1;
    text-align: center;
    border-radius: 15px;
}

.footer{
    background: black;
    width: 100%;
    padding: 25px 10px;
}

.text{
    color: white;
    margin-top: 10px;
    text-align: center;
}

.text:first-child{
    margin-top: 0;
}