    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f2f2f2;
	  min-height:100vh;
	  display:flex;
	  flex-direction:column;
	  overflow-y: auto;
	  overflow-x: hidden;
    }
	
	.container{
      padding: 2rem;
	  overflow-y:auto;
		}
		
	.container h1{
		text-align:center;
		}
	
    form {
      max-width: 500px;
      margin:auto;
      padding: 2rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
	  margin-bottom:20px;
    }
	
    input, textarea {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    button {
	width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right,black,grey); /*#2C7E54, #A3D572);*/
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
	margin-top:10px;

    }
    button:hover {
      background:  linear-gradient(to right,grey,black);
    }
	
	.footer{
	width:100%;
	margin-top:auto;
	}
.footer .footer_container{
min-height:40%;
max-width:100%;
background-color:black;
color:white;
padding:10px;
}
.footer_container .button{
	display:inline;
	padding:10px;
	}
.footer_container .button a{
text-decoration:none;
color:white;
font-size:20px;
}
.button_social {
    display: grid;
    grid-template-columns: 1.5fr 0.2fr; /* Two equal columns */
    gap: 5px; /* Space between divs */
    width: 100%;
	padding-top:15px;
}
.footer .social{
float:left;
text-align:right;
display:flex;
gap:15px;
}

@media (max-width: 768px) {
			html{
				font-size:90%;
				scroll-behavior: smooth;
				}
			 body {
	  min-height:90vh;
	  display:flex;
	  flex-direction:column;
	  overflow:auto;
    }
	
		.footer{
	margin-top:inherit;
	}
	form {
        width: 90%;
        padding: 20px;
        max-width: 320px;
		max-height:85%;
    }

    input, textarea {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
			html{
				font-size:80%;
				}
			 body {
      min-height:80vh;
	  display:flex;
	  flex-direction:column;
	  overflow:auto;
    }
		.footer{
	margin-top:inherit;
	}
}
@media (max-width: 1026px) {
			html{
				font-size:90%;
				scroll-behavior: smooth;
				}
			 body {
	  min-height:90vh;
	  display:flex;
	  flex-direction:column;
	  overflow:auto;
    }
	
		.footer{
	margin-top:inherit;
	overflow-y:auto;
	}
	form {
        width: 90%;
        padding: 20px;
        max-width: 320px;
		max-height:85%;
    }

    input, textarea {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }
}
	
  