 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'arial', sans-serif;
 }

 section {
     position: relative;
     width: 100%;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: url(https://source.unsplash.com/1600x900/?space,dark);
     background-size: cover;
     background-repeat: no-repeat;
 }

 section .main {
     width: 580px;
     margin: 0 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     border: 1px solid #000;
     padding: 30px;
     border-radius: 30px;
     background: rgba(255, 255, 255, 0.7);
     box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.25);
     border-top: 1px solid rgba(255, 255, 255, 0.3);
     border-left: 1px solid rgba(255, 255, 255, 0.3); 
     backdrop-filter: blur(25px);
     z-index: 1000;
     opacity: 1;
 }

 section .main .google-main {
     max-width: 300px;
     max-height: 100px;
     background: transparent;
 }

 section .main .searchBx {
     position: relative;
     width: 100%;
     margin-top: 20px;
 }

 section .main .searchBx .query {
     width: 100%;
     padding: 13px;
     outline: none;
     font-size: 16px;
     border: 1px solid #ccc;
     border-radius: 30px;
     padding-left: 45px;
     padding-right: 60px;
 }

 section .main .searchBx .query:hover,
 section .main .searchBx .query:focus {
     border: 1px solid #333;
 }

 section .main .searchBx .icons {
     position: absolute;
     top: 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 12px 20px;
     align-items: center;
     pointer-events: none;
 }

 section .main .searchBx .icons img {
     max-width: 100%;
 }

 .searchBtn {
     margin: 0 5px;
     margin-top: 20px;
     padding: 12px 20px;
     color: #444;
     font-size: 14px;
     border: none;
     cursor: pointer;
     border-radius: 10px;
     border: 1px solid transparent;
     outline: none;
 }

 .searchBtn:hover,
 .searchBtn:focus {
    border: 1px solid #333;
    color: #333;
 }
