@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');

html,
body {
  height: 100%;
}

.form-signin {
  max-width: 400px;
  padding: 1rem;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#logo, a {
  text-decoration: none;
  color: black;
}

#logo, a:hover {
  color: darkgray;
  text-decoration: none;
  cursor: pointer;
}

.slider {
  appearance: none; 
  width: 200px; 
  height: 25px; 
  background: #FF5C35 ;
  outline: none; 
  border-radius: 50px; 
}

.textbox {
  right: 10px;
}

.slider::-webkit-slider-thumb {
appearance: none;
width: 20px;
height: 20px; 
border-radius: 50%;
background: #FFFFFF; 
cursor: pointer; 
}

div.middle-div {
  display: flex;
  padding: 12px 12pxpx;
  margin: 8px 8px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  column-gap: 4rem;
  height: 90px;
}


#hamburger {
    margin-left: 1rem;
    font-size: 1.9rem;
    position: relative;
}

#sliding-window {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    border: 5px;
    padding: 10px;
    box-shadow: 0 0 50px #ccc;
}

#sliding-window.open {
    box-sizing: border-box;
    right: 10px;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-icon button {
    padding: 0;
    font-size: 1.9rem;
}

.heading {
    padding: 10px;
}

.heading h2 {
    font-size: 1.2em; /* Adjust as needed */
    margin-bottom: 10px;
}

.sliders {
    padding: 10px;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.links {
    padding: 10px;
}

.links a {
    content: '→';
    display: block;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
    position: relative;
}

.links a {
  content: '→';
  text-decoration: underline;
}

.links a:after {
    content: '→';
    position: absolute;
    right: -0.5em;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.links a:hover:after {
    opacity: 1;
}

.links a:hover {
    text-decoration: underline;
}
