*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 56.5%;
}

body {
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Montserrat", sans-serif;
}

.logos-container {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 5rem;
}

.logo-PPC {
  width: 20rem;
  margin-right: 5rem;
}

.logo-GISFO {
  width: 12rem;
  height: 14rem;
}

.body-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -150%);
}

svg {
  height: inherit;
  width: inherit;
}

/* BUTTON STYLE */

.buttonGisfo {
  display: flex;
  padding: 0.5rem;
  align-items: stretch;
  margin-left: 3rem;
  margin-right: 3rem;
  margin-top: 0.5rem;
  border-radius: 2rem;
  box-sizing: content-box;
  white-space: nowrap;
  color: grey;
  background-color: #f9fdff;
  transition: all 0.2s;
  border-style: hidden;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
}

button {
  width: 80%;
  padding: 20rem;
}

button:hover {
  background-color: #4eb5f1;
  cursor: pointer;
  color: white;
}

/* CONTENITORE DI TUTTI I BOTTONI.*/

.card-wrapper {
  min-height: calc(100vh - 25rem);
  width: 68vw;
  /*   background-color: yellow;
  */
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
}

.card {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 38rem;
  min-height: 40rem;
  text-align: center;
  padding: 1.5rem;
  margin: 5rem;
  border-radius: 20px;
  box-shadow: 5px 5px 5px #d8d5d5;
  position: relative;
}

.card > *{
  margin:7px;
}

.bg-green {
  background-image: linear-gradient(to right top, #c2ffa1, #adffc0, #a3ffdc, #a6fff1, #b5ffff);
}

.bg-blue {
  background-image: linear-gradient(to right top, #89e7e7, #9eebed, #b2eff1, #c5f2f6, #d7f6f9);
}

/* Testo Web */

.etichetta1 {
  font-family: "Montserrat", sans-serif;
  color: gray;
  font-size: 3rem;
  font-weight: lighter;
  align-items: center;
}

/* Testo App */

.etichetta2 {
  font-family: "Montserrat", sans-serif;
  color: gray;
  font-size: 3rem;
  font-weight: lighter;
  align-items: center;
}

/* RESPONSIVE PER MOBILE */

@media only screen and (max-width: 900px) {
  .card-wrapper {
    flex-flow: column;
    align-items: center;
  }
  .logo {
    position: relative;
    left: -14rem;
    margin-bottom: 4rem;
  }
}

  .form__input {
    font-size: 1.5rem;
    font-family: inherit;
    color: inherit;
    padding: 1.5rem 2rem;
    border-radius: 30px;
    background-color: rgba(red, 1);
    border: none;
    border-bottom: 4px solid transparent;
    width: 80%;
    display: block;
    transition: all 0.3s;
  }
   .form__input:focus {
      outline: none;
    }