/* Overall layout style */
html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    background-color: #fff;
}

body {
    max-width: 150rem;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-size: 1.6rem;
    color: #383c49;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #fff;
}

.container {
    max-width: 102.4rem;
    margin-left: auto;
    margin-right: auto;
}

main {
    flex: 1;
}

main .container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
    text-align: center;
    font-weight: 200;
    line-height: 2.4rem;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 28.5rem;
    padding: 0 2rem;
    background: url("/assets/img/hero-forex_mbpli.jpg") no-repeat;
    background-size: cover;
    color: #fff;
    line-height: 4rem;
    font-size: 1.5rem;
    text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.7);
}

.hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* background-color: rgba(40, 46, 57, 0.5); */
}

h2 {
    font-weight: 600;
}

footer {
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 200;
}

/* Content styles */
.logo {
    width: 15rem;
    height: auto;
}

.cone-icon {
    width: 15rem;
}

.text-medium {
    font-weight: 500;
}
.container button {
    text-decoration: none;
    background: #ff8c45;
    color: #fff;
    border: 1px solid #ff8c45;
    text-transform: uppercase;
    font-family: "Titillium Web", Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.error-msg {
    display: block;
    font-size: 1.25rem;
    color: #ff0000;
}

.form {
    display: flex:
}

input {
    padding: 0.5rem;
    width: 24rem;
}

button {
    padding: 0.75rem;
}

button.link {
    cursor: pointer;
}

button:disabled, input:disabled {
    background: rgb(186 186 186);
    color: #000;
    border: 1px solid rgb(186 186 186);
}

.brand-color {
    color: #ff8c45;
}

.hide {
    display: none;
}

@media only screen and (min-width: 768px) {
    .hero {
        font-size: 2rem;
        line-height: 5rem;
    }
}

@media only screen and (min-width: 1500px) {
    html {
        background-color: #efefef;
    }
}
