*{
    position: relative;
}

input::placeholder{
    color:#bbb !important;
}

body {
    align-items: center;
    box-shadow: inset 0 0 20px 0px #2A3F54;
    color: #fff;
    display: flex;
    height: 100vh;
    justify-content: center;
}

a {
    color: #fff;
    
    &:hover, &:focus {
        color: #fff;
    }
}

.main-content {
    max-width: 740px;
    width: 86%;
}

.login {
    background: #F7F7F7;
}

.login_content {
    background-color: #2A3F54;
    border-radius: 3em;
    padding: 2em;
    display: flex;
    gap: 16px;
    align-items: center;
    
    h1 {
        font-size: 22px;
    }

    form {
        flex-grow: 1;

        input[type="text"],
        input[type="email"],
        input[type="password"] {
            background-color: #354d67;
            border-radius: 3px;
            border: none;
            color: #fff;
            margin: 0 0 20px;
            outline: none;
            width: 100%;

            &:focus {
                outline: none;
                box-shadow: none;
            }
            
            
        }

        .input-group {
            input {
                margin-bottom: 0;
            }
            
            .input-group-addon {
                cursor: pointer;
            }
        }

        .buttons {
            align-items: center;
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
    }
    
    .brand {
        color: rgb(115, 135, 156);
        font: normal 12px Helvetica, Arial, sans-serif;
        letter-spacing: -0.05em;
        line-height: 20px;
        text-align: center;
        width: 250px;
        
        h1 {
            margin-bottom: 10px;
    
            &:before,
            &:after {
                content: "";
                height: 1px;
                position: absolute;
                top: 50%;
                width: 23%;
            }
    
            &:after {
                background: #7e7e7e;
                background: linear-gradient(left, #7e7e7e 0%, #fff 100%);
                right: 0
            }
            
            &:before {
                background: #7e7e7e;
                background: linear-gradient(right, #7e7e7e 0%, #fff 100%);
                left: 0
            }
            
            img {
                display: block;
                height: 65px;
                margin: 0 auto;
            }
        }
    
        p {
            line-height: 1em;
            margin: 0;
        }
    }

    em {
        font-size: 11px;
        opacity: 0.6;
    }
}

@media(max-width: 980px) {
    body {
        border: solid 6px #2A3F54;
    }
    .login_content {
        flex-direction: column;

        form {
            max-width: 400;
            width: 90%;
        }
    }
}

@media(max-height: 800px) {
    .brand {
        h1 {
            img {
                height: 55px;
            }
        }
    }
}

}

@font-face {
    font-family: 'Stranger Things';
    src: url('../sts3/fonts/BenguiatBold.eot');
    src: url('../sts3/fonts/BenguiatBold.eot') format('embedded-opentype'),
        url('../sts3/fonts/BenguiatBold.woff2') format('woff2'),
        url('../sts3/fonts/BenguiatBold.woff') format('woff'),
        url('../sts3/fonts/BenguiatBold.ttf') format('truetype'),
        url('../sts3/fonts/BenguiatBold.svg#BenguiatBold') format('svg');
}