_login.scss 747 Bytes
.login {
    background-color: #bdbdbd;
    border: 1px solid #000000;
    border-radius: 3px;
    height: calc(193px + 1em);
    left: calc(50% - 130px);
    opacity: 0.7;
    position: absolute;
    text-align: center;
    top: 190px;
    width: 260px;
    &-titulo {
        border-bottom: 1px solid #ffffff;
        padding: 5px 0;
    }
    &-campo {
        label {
            display: block;
            font-size: 12px;
            margin: 5px 0 0;
        }
        input {
            &:focus {
                outline: 3px solid #ff9900;
            }
        }
    }

    button {
        margin-right: 42px;
    }

    &-alerta-error {
        width: 260px;
        left: calc(50% - 130px);
        top: calc(383px + 1.5em);
    }
}