@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "poppins",sans-serif;
  /* box-sizing: border-box; */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #e0dfda;
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}

.container {
  background-color: #fff;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  border-radius: 15px;
  height: fit-content;
  width: 75%;
}


.container h2{
  text-align: center;
}

form {
  margin: 2rem 0 1rem 0;
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
}

form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.45rem;
}

form input {
  border: 1px solid lightgray;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.5rem;
}

.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0px;
}

.dropdown i {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.select-container img {
  max-width: 2rem;
}

.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border-radius: 0.3rem;
  border: 1px solid lightgray;
}

.select-container select {
  font-size: 1rem;
  width: auto;
}

.msg {
  margin: 0 0 1rem 0; 
  color: rgb(18, 109, 228);
  font-size: 20px;
  text-align: center;
  display: none;
}

form button {
  margin-top: 10px;
  height: 3rem;
  background-color: #4579d5;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 300ms ease;
}
form button:hover{
  box-shadow: 0px -1px 24px 0.99px rgba(146, 142, 142, 0.7);;
}

i{
  cursor: pointer;

}

footer{
  position: relative;
  bottom: -6vh;
}

footer p a::after{
  content: "";
  height: 15px;
  width: 15px;
  background-image: url("assets/min.png");
  background-size: 15px 15px;
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 4px;
  

}
footer p a{
  text-decoration: underline;
  color: black;
}
footer p{
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#note{
  margin-top: 0.5rem;
  text-align: center;
  color: #e91e1e;
}

