@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Roboto:wght@300&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.sidebar {
    background-color:  #0967cc;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 105vh;
    transition: all .3s ease ;
    padding: 0.6rem 0.8rem;
}

.logo h5 {
    color:bisque;
    font-size: 20px;
    opacity: 0;
}

.logo h5 span {
    color: #fff;
}
.sidebar.active .logo h5 {
    opacity: 1;
}
#btn {
    position: absolute;
    color: #fff;
    font-size: 24px;
    top: 1rem;
    left: 2.2rem;
    transition: all .5s ease;
    cursor: pointer;
}
.sidebar.active #btn {
    top: 0.7rem;
    left: 10rem;
}
.nav-links {
    position: relative;
    margin-top: 2em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-links li {
    position: relative;
    height: 50px;
    list-style-type: none;
    margin: 0.8em auto;
    width: 90%;

}
.nav-links a {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;

} 
 .nav-links li span {
    opacity: 0;
}
.sidebar.active .nav-links li span {
    opacity: 1;
}
.nav-links li a:hover {
    background-color: white;
    color: black;
}
.nav-links li a i {
    min-width: 65px;
    text-align: center;
    height: 50px;
    border-radius: 12px;
    line-height: 50px;
} 
.sidebar.active {
    width: 220px;
}
main {
    display: fle;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
    padding-right: -40px;
    box-sizing: border-box;
}

/* Add a margin to the body and set a background color */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f0f0f0;
  }
  
  /* Style the container and set some padding */
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 6px;
    width: 90%; 
    max-width: 700px;
    margin: 50px auto 20px 30%;/* Add margin-left: 50px here */
    padding: 30px;
    background-color: rgb(255, 255, 255, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Style the form elements */
  .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
hr {
    width: 100%;
}
h2 {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.7);
}
  /* Style the submit button */
.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.form-group {
    margin-bottom: 1rem;
  }
/* Style the select elements */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px 18px;
  padding-right: 40px;
}

/* Style the label elements */
label {
  display: block;
  margin-bottom: 10px;
  margin-right: 0.5rem;
  font-weight: bold;
}