
/* Media query for tablets */
@media (min-width: 768px) {
    .grid-container-flex {
      font-size: 1.3rem;
    }
  
  }
  
  /* Media query for desktops */
  @media (min-width: 1024px) {
    .grid-container-flex {
      font-size: 2rem;
    }
  }
  

  h1 { 
      color: #262626; 
      font-family:'Libre Franklin', sans-serif; 
      font-size: 3em;
      margin-top: 270px;
      margin-left: 20px;
      margin-bottom: 215px;
      text-align: center;
  }
  
  
  h2 { 
      color: #262626; 
      font-family:'Libre Franklin', sans-serif; 
      font-size: 1.5em;
      margin-left: 20px;
  }

  p { 
    color: #262626; 
    font-family:'Libre Franklin', sans-serif; 
    font-size: 1em;
    margin-left: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
}

  b {
    font-family:'Libre Franklin', sans-serif; 
    font-size: 1.2em;

  }
  
          body {
            background-image: linear-gradient(43deg, #FF7900, #FFB570, #FF97B0);
              margin: 0; /* Remove default margin */
              display: flex;
              justify-content: center; /* Center horizontally */
              align-items: center; /* Center vertically */
              background-size: cover; /* Cover entire background */
              background-position: center; /* Center the background image */
              text-align: center; /* Center text inside the section */

          }
          .grid-container-flex {
              display: flex;
              flex-direction: column; /* Stack items vertically */
              align-items: center; /* Center items horizontally */
              padding: 20px;
              color: #262626; /* Change text color for contrast */
          }
  
          /* Media query for tablets */
          @media (min-width: 768px) {
              .grid-container-flex {
                  font-size: 1.3rem; /* Increase font size for tablets */
              }
              .my-button {
                  font-size: 1.5rem; /* Larger button text */
              }
          }
  
          /* Media query for desktops */
          @media (min-width: 1024px) {
              .grid-container-flex {
                  font-size: 2rem; /* Increase font size for desktops */
              }
              .my-button {
                  font-size: 1.8rem; /* Larger button text */
              }
          }

* {box-sizing: border-box}

/* Add padding to containers */
.container {
  padding: 10px 20px;
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 10px 0 22px 0;
  border-radius: 12px;
  display: inline-block;
  background: white;
  border: none;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #f1f1f1;
  outline: none;
}

/* Set a style for the submit/register button */
.registerbtn {
  background-color: #262626;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  font-family:'Libre Franklin', sans-serif; 
    font-size: 1.2em;
    border: none;
    margin-top: 70px;
    margin-bottom: 40px;
    text-decoration: none;
}

.registerbtn:hover {
  opacity:1;
    background-color: white;
    color: #262626;
}

/* Add a blue text color to links */
a {
  color: #262626;
}

/* Set a grey background color and center the text of the "sign in" section */
.signin {
  background-color: #ffffff;
  text-align: center;
}