@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');

* {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins" ;
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgb(5, 5, 48);
}

.grid-container{
  display: grid;
  grid-template-columns: 260px 1fr 1fr; 
grid-template-rows: 0.2fr 3fr;
grid-template-areas: 0; 
height: 100vh;
}

.header{
  grid-area: header;
  height: 70px;
  background-color: royalblue;
  
}

#sidebar{
  grid-area: sidebar;
  height: 100%;
  background-color: grey;
}

.main-container{
  grid-area: main;
  background-color: beige;
}
.container{
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
}

.form-group{
  display:flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 2rem;
}

.form-group input, select{
  height: 50px;
  border-radius: 5px;
  border: none;
  border: 1px solid lightgray;
  outline: none;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
}

input::-webkit-inner-spin-button, 
input::-webkit-outer-spin-button{
-webkit-appearance: none;
  margin: 0;
}

.form-control label {
  align-items: start;
  display: flex;
  padding: 5px;
  font-weight: 500;
}

.form-control i {
border: 1px solid lightblue;
border-radius: 50%;
padding: 15px;
cursor: pointer;
transform: rotate(0deg);
transition: 0.3s;
}
button{
  width: 20%;
  height: 45px;
  background: #78c1f3;
  border: none;
  cursor: pointer;
  outline: none;
border-radius: 5px;
color: #fff;
}

img{
  height: 25px;
  position: relative;
  top: 5px;
}

.rotate{
  transform: rotate(180deg) !important;
}

.form-output p{
  margin: 10px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.form-output p:nth-child(2){
  font-size: 30px;
  color: rgb(46,60,87,);
}

.form-output p:nth-child(3){
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clear-button {
  margin-top: 20px;
  text-align: center;
}

#clearBtn {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#clearBtn:hover {
  background-color: #0056b3;
}
