* {
    margin: 0;
    padding: 0;
    font-family: Roboto;
}

body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.headerBg {
    height: 0.5rem;
    background: linear-gradient(to right, #aa418c, #ff9300);
    width: 100%;
}


.container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.mainContainer {
    width: 90%;
    max-width: 936px;
    position: relative;
    margin: 0 auto;
}

nav {
    background-color: #efefef;
    padding: 10px;
}

nav,
.nav {
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
    color: black;
    outline: 0;
    font-size: 0.875rem;
}


.middleHeader {
    height: 72px;
    width: 100%;
    box-shadow: 0px 14px 14px -6px rgba(87, 87, 87, 0.17);

}

.logoNEmpty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main {
    margin-top: 100px;
}

h1 {
    color: #00526e;
    font-family: Roboto, Ciutadella;
    font-weight: 600;
    font-size: 2.5vh;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 0;
    max-width: 800px;
}

.line {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

@media screen and (max-width: 992px) {
    .line {
        flex-wrap: wrap;
    }

    .container {
        width: 100%;
    }
}

.input {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
}

label {
    color: #343434;
    margin-bottom: 10px;
}

input {
    display: inline-block !important;
    height: 3.125rem;
    width: 100%;
    padding-left: 5px;
    border: 0.0625rem solid #bebebe;
    border-radius: 0.125rem;
    margin-bottom: 1rem;
    font-size: 100%;
}


button {
    background-color: #aa418c;
    color: white;
    border: 1px solid #aa418c;
    border-radius: 4px;
    box-shadow: 0 4px 6px hsla(0,0%,75%,.33),0 1px 3px hsla(0,0%,75%,.33);
    cursor: pointer;
    display: inline-block;
    font-family: Roboto;
    font-size: 1.125rem;
    font-variant-ligatures: none;
    font-weight: 500;
    line-height: 1.5rem;
    min-width: 5.25rem;
    padding: .6875rem 1.5rem;
    text-decoration: none;
    transition: all .15s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
}


footer {
    height: 30px;
    width: 100%;
    position: sticky;
    bottom: 0;
    left: 0;
    background-color: #efefef;
    padding: 20px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}