@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



::placeholder {
  font-weight: bold;
  color: #22232e;
}



.assistance-info {
  margin-top: 20px;
  text-align: center;
  /* Aggiunge un margine sopra il paragrafo */
}


.header_top {
  width: 100%;
  position:absolute;
  top:0;
  border-bottom:2px solid #e0ffff;
  height: 100px;
  background-color: #0368b8; 

}

.logo {
  position:absolute;
  top:0;

}

body {

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #22232e;
  font-family: 'Poppins', sans-serif;
}


body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url('img/ooo.png');
  background-size: cover;
  opacity: 0.8;
  z-index: -1;
}

a {
  text-decoration: none;
}

ul {
  list-style: disc;
  color: #e0ffff;
}

section {
  width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;

}

.input-box {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.input-box a {
  margin: 0 10px;
}



.text {
  background: rgba(34, 35, 46, 0.75);
  display: block;
  padding: 30px;
  width: 570px;   
  text-align: center;
  margin-top: 130px;



}

.text h1 {
  color: #00c2cb;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.text p {
  font-size: 15px;
  color: #e0ffff;
  margin-bottom: 15px;
  line-height: 1.5rem;
  margin-bottom: 15px;
  margin-top: 15px;
}

.text .input-box {
  position: relative;
  display: flex;
  width: 100%;
}


.menu {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-left: 30px;
}

.menu li a {
  display: flex;
  font-size: 1rem;
  color: #00c2cb;
  transition: 0.1s;
}



footer {
  background-color: #0368b8;
  color: #fff;
  padding: 20px;
 
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.logo {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 330px;
  /* Regola le dimensioni del logo secondo le tue esigenze */
  height: auto;
}



@media screen and (max-width:600px) {

  .header_top {
    width: 100%;
    height: 60px;
    
  
  }
  
  .logo {
    position:absolute;
    top:0;
    width: 200px;
  
  
  }




  body::before {
    height: 30%;margin-top:50px;
  }

  .container {
    display: flex;
    flex-direction: column-reverse;
    min-width: 10px;
    padding: 40px 0px;
    bordeR: 1px
  }

  .image {
    width: 250px;
    height: auto;
    margin-left: 170px;
    /* Aggiungi un margine destro per spostare l'immagine a destra */
  }

  .text {
    display: block;
    width: 100%;
    padding: 20px 40px;
   
  }
 
  
}