body{
    display: flex;
    min-height: 90vh;
    justify-content: center;
    align-items: center;
    background-color: #2B4570;
}
.container {
  margin-left: 15px;
  height: 350px;
  width: 250px;
  align-items: center;
  padding: 2rem;
  font-size: 16px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-top: 5px;
  background-color: #7180AC;
  border: 2px solid #E49273;
  border-radius: 1rem;
  box-shadow: 0 0 10px #e8c468, 0 0 20px #e86f2a, 0 0 30px #6874E8;
  animation: glow 2s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

/* Glowing animation keyframes */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px #6874E8, 0 0 10px #6874E8, 0 0 15px #6874E8;
  }
  100% {
    box-shadow: 0 0 20px #6874E8, 0 0 30px #6874E8, 0 0 40px #6874E8;
  }
}


form select,input,button{
    width: 100%;
    border: none;
    outline: none;
}
h2{
    margin-top: 2px;
    text-align: center;
}

form input{
    border: 1.5px solid gray;
    height: 2rem;
    padding-left: 0.5rem;
    border-radius: 0.5rem;
}
.dropdown{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.select-container img{
    max-width: 2rem;


}
.select-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    border:1px solid lightgrey;
    background-color: lightblue;

}
.msg{
    margin: 1rem 0 1rem 0;
}
.btn{
    height: 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.12rem;
    background-color: #FFDBB5;
    cursor: pointer;
}

.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.8rem;
  position: fixed;
  width: 100%;
}

.footer {
  background: linear-gradient(90deg, #222, #000);
  color: #ccc;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
   padding: 0.3rem 1rem 1rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  height: 20px;
  line-height: 1;
  left: 0;
  width: 100%;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.5);
}




