* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

h2, p {
    margin: 0;
}

h2 {
    color: var(--button-bg-color);
    font-size: 16px;
    font-weight: 300;
}

p {
    font-size: 12px;
    letter-spacing: normal;
}

a {
    color: var(--main-text-color);
    font-size: 14px;
}

form input {
    background-color: transparent;
    border: none;
    color: var(--main-text-color);
    width: 100%;
    height: 27px;
    padding: 0;
}

form input:focus {
    background-color: transparent;
}

i {
    cursor: pointer;
    height: 1rem;
    width: 1.5rem;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--main-text-color);
    opacity: 0.9; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--main-text-color);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--main-text-color);
}

form input:focus {
    outline: none;
}

a.button,
button,
form > button {
    width: 250px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

#border {
    position: fixed;
    left: 7%;
    top: 5%;
    height: 90%;
    width: 86%;
    background-color: var(--form-bg-color);
    border-radius: 15px;
}

#logo {
    background-image: var(--logo-url);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    text-indent: -9999px;
    width: 100%;
    height: 115px;
}

#container {
    display:flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    width: 80%;
}

#container > p {
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 0;
    font-size: 14px;
    width: 100%;
}

#container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

form.space-between {
    min-height: 240px;
    height: 35vh;
    justify-content: space-between;
}

form.space-between > div:nth-child(1) {
    width: 100%;
    height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

form .input-wrapper {
    border-bottom: 1px solid var(--main-text-color);
    color: var(--main-text-color);
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    padding: 0 0.1rem;
}

.input-wrapper i {
    line-height: 1;
}

#container .margin-top {
    margin-top: 40px;
}

#container a {
    margin-top: 20px;
}

#notifica-senha {
    width: 220px;
}

#notifica-senha > h2,
#notifica-senha > p {
    margin-bottom: 5px;
}

#notifica-senha > p::first-letter {
    text-transform: capitalize;
}

.no-display {
    display: none;
}

@media (max-width: 575.98px) {
    #container {
        width: 70%;
        max-width: 300px;
    }

    a.button,
    #container > button,
    form > button,
    form > input,
    form .input-wrapper  {
        width: 100%;
    }
}

/*Small devices (landscape phones, 576px e maiores)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    #container {
        width: 50%;
        max-width: 300px;

    }

    a.button,
    #container > button,
    form > button,
    form input,
    form .input-wrapper {
        width: 100%;
    }
}

/*Medium devices (tablets, 768px e maiores)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    #border {
        left: 5%;
        top: 3%;
        height: 94%;
        width: 90%;
    }
}

/*Large devices (desktops, 992px e maiores)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    #border {
        left: 2%;
        top: 2%;
        height: 96%;
        width: 96%;
    }
}

/*Extra large devices (large desktops, 1200px  e maiores)*/
@media (min-width: 1200px) {
    form.space-between {
        height: 15em;
    }

    #border {
        left: 2%;
        top: 2%;
        height: 96%;
        width: 96%;
    }
}