@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}
.container{
    background-color: rgb(219, 240, 236);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.child1{
    display: flex;
    flex-direction: column;
    width: 80%;
    border-radius: 20px;
    background-color:white;
    max-width: 1000px;
    padding: 20px;
    gap: 20px;
}
.child2{
    display: flex;
    width: 80%;
    border-radius: 20px;
    max-width: 1000px;
    padding: 20px;
    justify-content: space-between;
}
.box{
    background-color: white;
    /* border: 1px solid black; */
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 15px;
}
.box1{
     display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    width: 100%;
    height: 250px;
    background-color: white;
    border-radius: 20px;
    /*text-align: center; */
}
.box2{
    width: 100%;
    height: 250px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
}
.p1{
    font-size: 40px;
    /* font-weight: bold; */
    margin: 10px;
}
.p2{
    margin: 10px;
    color: #333;
    font-size: 20px;
}
input{
    margin: 10px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}
button{
    border: none;
    color: white;
    border-radius: 100px;
    width: 70px;
    align-self: flex-end;
    margin: 10px;
    margin-right: 10px;
    padding: 10px 10px;
    background-color: blue;
    cursor: pointer;
}
button:hover{
    background-color: transparent;
    color:black;
}
/* input:hover{
   background-color: #c3dfed;
    color: black; 
}*/
.Language{
    border-radius: 4px;
    border: none;
    padding: 5px 5px;
    background-color: transparent;
    font-size: 14px;
}
.Language:hover{
    background-color: #c3dfed;
    color: black;
}
p > span{
    /* margin: 6px; */
    cursor: pointer;
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    
}
p > span:hover{
    background-color: #c3dfed;
    color: black;
}
@media screen and (max-width: 768px){
    .container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 300px 0;
    }
    .child1{
        width: 95%;
        padding: 15px;
    }
    .child2{
        display: flex;
        /*flex-direction: column;*/
       /* align-items: center;*/
       /* text-align: center;*/
        gap: 10px;
        margin-top: 20px;
    }
    .child2 select {
        margin-bottom: 10px;
    }
    .child2 p span {
        display: inline-block;
        margin: 5px;
    }
    .box{
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        /* gap: 50px; */
        justify-content: center;
        height: auto;
    }
    .box1, .box2{
        width: 100%;
    }
    .p1{
        font-size: 28px;
    }
    .p2{
        font-size: 16px;
    }
     img {
        width: 35px;
        height: 35px;
    }
}
 @media  screen and (max-width: 580px) {
  .child2 {
    flex-direction: column;       
    align-items: center;
    gap: 8px;                     
    text-align: center;
  }

  .child2 p {
    display: flex;
    flex-wrap: wrap;              
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
  }

  .child1 {
    width: 95%; 
    padding: 15px;
    gap: 15px;
  }

  .box {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    height: auto; 
  }

  .box1, .box2 {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .p1 {
    font-size: 28px;
  }

  .p2 {
    font-size: 16px;
  }

  input {
    width: 90%;
    padding: 12px;
    font-size: 14px;
  }

  button {
    width: 80px;
    padding: 10px;
    font-size: 14px;
    align-self: center; 
  }

  .child2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}