@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    /* overflow-Y: hidden; */
}

.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
}

.container_element {
    width: 100%;
    height: fit-content;
    margin: 0 auto;
}

nav {
    background-color: #01548e;
    padding: 15px;
}


.nav img {
    width: 190px;
    height: 60px;
    object-fit: fill;
}

.one p{
    font-size: 29px;
    font-weight: 600;
    color: black;
}

.two label {
    font-size: 13px;
    font-weight: 500;
    color:#1977d3;
}

.two input {
    width: 450px;
    outline: none;
    border: none;
    border-bottom: 2px solid #1977d3;
    padding-left: 1px;
    padding-bottom: 10px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
}


.three {
    margin-top: 35px;
}

.three button {
    width: 80px;
    height: 35px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background-color: #1977d3;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
}

.four {
    margin-top: 30px;
}

.four span {
    color: #01548e;
}

.four p {
    color: black;
    font-size: 14px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
}

footer {
    background-color: rgb(35, 34, 34);
    height: fit-content;
    margin-top: 40px;
    padding: 10px;
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0; */
}

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

.footer_one p {
    color: rgba(255, 255, 255, 0.869);
    font-size: 13px;
    font-weight: 300;
}
.footer_one span {
    margin-left: 10px;
    margin-right: 10px;
}

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

.footer_two img {
    width: 150px;
    height: 40px;
    object-fit: contain;
}

.footer_three img {
    width: 50px;
    height: 40px;
    object-fit: fill;
}


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

.footer_three p {
    color: rgba(255, 255, 255, 0.807);
    font-size: 11px;
    font-weight: 300;
    margin-left: 10px;
}

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

.second {
    display: none;
}

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

    .footer_three {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .two input {
        width: 100%;
        outline: none;
        border: none;
        border-bottom: 2px solid #1977d3;
        padding-left: 1px;
        padding-bottom: 10px;
    }

    .second {
        display: block;
    }

    .first {
        display: none;
    }

}

/* @media screen and (max-width:400px) {

    .two input {
        width: 100%;
        outline: none;
        border: none;
        border-bottom: 2px solid rgb(52, 94, 193);
        padding-left: 1px;
        padding-bottom: 10px;
    }

} */