footer{
    background-color:black;
    padding:40px 40px;
}
.footer_form{
    color:white;
}
.footer__information{
    background-color:black;
    display:flex;
    justify-content:space-between; 
    align-items:center;
    box-sizing:border-box;
    width:100%;
}

.footer__start{
    flex-basis: 100%;
}
.footer__socials{
    display:flex;
    gap:10px;
    justify-content:center;
}

.footer__socials a{
    color:white;
    font-size:25px;
    text-decoration:none;
}
.footer__middle{
    flex-basis: 100%;
    display:flex;
    flex-direction:column;
}

.footer__middle div:nth-child(1){
    display:flex;
    align-items:center;
    gap:10px;
    text-align:center;
    justify-content:center;
}
.footer__middle img{
    width:10%;
    height:10%;
}
.footer__middle h2{
    color:white;
    font-size:20px;
    font-weight:500;
}

.footer__end p{
    color:white;
    text-align:right;
    margin:0;
}

.footer__end{
    flex-basis: 100%;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.footer_form {
align-items: center;
max-width:500px;
}

.footer_form h3 {
font-size: 30px; /* Adjust size as needed */
margin-bottom: 15px; /* Add spacing below */
font-weight: 500;
margin-top: 0;
}
.footer_form h4 {
margin: 7px; 
margin-left: 0px;
font-size: 15px; /* Adjust size as needed */
font-weight: 500;
}

.footer-input {
width:140px;
padding: 10px 0px;
border:2px solid white;
height:1px;
color:black;
font-family: 'Roboto';
margin-bottom: 4px;
border-radius:5px;
background-color: white;
}

.footer-textarea {
width: 340px;
background-color: white;
color:black;
border:2px solid white;
font-family: 'Roboto';
resize: none;
height:30px;
overflow:hidden;
border-radius:5px 0px 0px 5px;
}

.footer-button {
padding: 20px 15px;
background-color: #ffffff;
border: none;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
cursor: pointer;
display: flex; /* Ensure contents are centered */
align-items: center; /* Center content vertically */
justify-content: center;
gap:5px;
text-align: center; /* Align text and media centrally */
/* Optional: define fixed width and height if needed */
width: 100px;
font-size:15px;
transition: all .3s ease;   
background-color:#0038a7;
color:white;
}

.footer-button:hover{
transform: scale(1.1);
}

.form_info{
display:flex;
gap:8px;
margin: 8px 0px;
text-align:left;
justify-content:start;
}

.form_message{
display:flex;
max-height:30px;
}

@media screen and (max-width: 450px) {

footer{
    display:flex;
    flex-direction: row;
    width:100%;
    box-sizing: border-box;
    background: black;
    justify-content: space-between;
    padding:20px 20px;
}

.footer__start{
    display:none;
}


.footer_form{
    display:none;
}

.footer__information{
    justify-content: space-between;
}

.footer__end{
    display:none;
}

.footer__middle img{
    width:15%;
    height:15%;
}
}