body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;

}



header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #212121;
    height: 60px;
}

nav {
    width: 80%;
    display: flex;
    align-items: center;
}

.imlo {
    height: 20px;
}

main {
    display: flex;
    justify-content: center;
    width: 100%;
}

.containermain {
    width: 40%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.rlk {
    color: #212121;
    letter-spacing: 0.02em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 35px;
}
.txt {
    color: #212121;
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
}
.divinput {
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: center;
}
.frm {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;    
}
.inputty {
    height: 40px;
    border: 1px solid #c4c4c4;
    color: #121212;
    width: 80%;
    border-radius: 6px;
    font-size: 15px;
    padding-left: 10px;
}

.divsubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.submitbtn {
    cursor: pointer;
    background-color: #234182;
    color: #ffffff;
    border-radius: 40px;
    border: none;
    height: 42px;
    font-size: 15px;
    padding: 0px 40px;
    font-weight: 600;
}

.submitbtn:hover {
    background-color: #355eb8;
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.navfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

.lowl {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #424242;
}


@media (min-width:300px) and (max-width: 1000px) {
    .containermain{
        width: 95%;
    }
    footer {
        height: auto;
        position: relative;
        margin-top: 60px;
    }
    .navfooter {
        width: 90%;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}