.footer-layout {
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(41, 43, 51);
    color: wheat;
    justify-content: space-around;
    font-family: 'Ubuntu', sans-serif;
    padding: 16px 5px;
}

.footer-left-layout {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgb(180, 185, 203);
}

input[type=text] {
    border: none;
    border-bottom: 2px solid #fff;
    background-color: rgb(41, 43, 51);
}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

label[for="fname"] {
    color: #fff;
    font-size: 1rem;
}

input[type=submit] {
    background-color: rgb(245, 36, 83);
    border: none;
    color: #fff;
    padding: 0.43rem 1.875rem;
    cursor: pointer;
    border-radius: 1rem;
}
input[type=submit] :hover{
    cursor: pointer;
    background-color: #000;
    color: #000;
}
.logo-icons{

    background-color: rgb(41, 43, 51);
    text-align: center;
}
.logo-footer{
    margin-right: 2rem;
    
}

/* for Mobile */

@media only screen and (max-width:400px) {
    .footer-layout {
        text-align: center;
        font-size: 1rem;
    }
}